我正在尝试使用realloc在输入字符后向数组添加元素。 这是我的代码:
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int i, j, k;
int a = 1;
int* array = (int*) malloc(sizeof(int) * a);
int* temp;
for(i = 0;;i++)
{
scanf("%d", &j);
temp = realloc(array, (a + 1) * sizeof(int));
temp[i] = j;
if(getchar())
break;
}
for(k=0; k <= a; k++)
{
printf("%d", temp[k]);
}
}
当我运行这个小程序时,如果我输入例子:2 3 4 它显示我:20; 我知道内存没有正确分配,但我无法弄清楚问题。 提前谢谢。