gpt4 book ai didi

c - 整数数组的动态内存分配

转载 作者:太空狗 更新时间:2023-10-29 17:16:07 25 4
gpt4 key购买 nike

我正在尝试使用 malloc 动态创建大小为 2 的数组。这是我的代码:

int *d = (int*)malloc(2 * sizeof(int));
d[0] = 4;
d[1] = 5;
d[2] = 8;
d[3] = 9;
d[4] = 7;
int i;

for (i = 0; i < 5; i++)
printf("%d \n", d[i]);

当我运行这段代码时,它打印出 4, 5, 8, 9, 7

我想知道它是如何分配比我请求的(2 个整数)更多的内存(5 个整数)?

最佳答案

i wondering how it was able to allocate more memory than I requested.

它没有。您正在调用未定义的行为。一种可能的结果* 是您的程序似乎“有效”。


* 可以说是最差的。

关于c - 整数数组的动态内存分配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17538898/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com