为了在 malloc 命令后释放内存以防止内存泄漏,我在运行时遇到了堆损坏问题。我的调试告诉我,在达到堆缓冲区的末尾后,我的应用程序正在尝试写入内存。这是我为隔离我的问题而简化的内容。
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
main(){
int i,j,n;
int temp[4];
int **a;
printf("Amount of intervals to be entered: ");
scanf("%d", &n);
//allocate memory for a 2d array of size (n x 4)
a = (int**) malloc(n*sizeof(int*));
for (i=0;i<4;i++){
a[i] = (int*) malloc(4*sizeof(int));
}
if (!a){
printf("malloc failed %d\n",__LINE__);
exit(0);
}
printf("Please enter the intervals a line at a time followed by a return: \n");
for(i=0;i<n;i++){
scanf("%d %d %d %d",&a[i][0], &a[i][1], &a[i][2], &a[i][3]);
}
for(i=0;i<n;i++){
printf("%d, %d, %d, %d\n", a[i][0], a[i][1], a[i][2], a[i][3]);
}
// free up the allocated memory
for (i=0;i<n;i++){
free(a[i]);
}
free(a);
}
我对分配和取消分配内存不是很熟悉,所以我不知道我应该做什么。