#include<stdio.h>
#include<stdlib.h>
void main()
{
int* list_of_numbers;
list_of_numbers = (int*)malloc(1);
list_of_numbers[0] = 10;
printf("Value at 0 before realloc: %d", list_of_numbers[0]);
list_of_numbers = (int*)realloc(list_of_numbers, 2 * sizeof(int));
printf("Value at 0 after realloc: %d", list_of_numbers[0]);//this one prints -83920310 instead of 10
system("pause");
}
我的任务是要我为一个数字分配内存,并且工作正常 然后,我需要将其重新分配为2个数字以适合,然后我将我的第一个值替换为随机值。 为什么?以及如何修复:D
答案 0 :(得分:2)
malloc(1)
太小,无法容纳int
,因此写一个存在未定义的行为。碰巧它似乎一开始就起作用。改为使用malloc(sizeof(int))
或malloc(sizeof(*list_of_numbers))
。