Почему я получаю сообщение об ошибке «Обнаружено повреждение кучи: после нормального блока (# 187) в 0x ...»
#include <iostream>
#include <stdlib.h>
using namespace std;
void readArray(int* a, size_t nElem) {
for (int i = 0; i < nElem; i++) {
cout << " arr[" << i << "]: ";
cin >> a[i];
}
}
int main() {
size_t elements;
cout << "Who many elements on the array: ";
cin >> elements;
int* p1 = (int*) malloc(elements); //allocating space
readArray(p1, elements);
free(p1); //removing allocated space
return 0;
}