gpt4 book ai didi

c - 通过函数调用向数组添加元素

转载 作者:行者123 更新时间:2023-11-30 20:36:25 25 4
gpt4 key购买 nike

有人可以向我解释一下为什么这段代码有效吗:

#include <stdio.h>

void set_array(int array[3]);

int main()
{
int a[3] = {1, 2, 3};

set_array(a);

for (int i = 0; i < 4; i++)
{
printf("%d\n", a[i]);
}
}

void set_array(int array[3])
{
array[3] = 4;
}

如何通过函数调用向数组添加元素?有人可以向我解释一下幕后发生了什么吗?

提前致谢。

最佳答案

不能,您需要使用 malloc() 分配数组,然后使用 realloc()

关于c - 通过函数调用向数组添加元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36121459/

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