gpt4 book ai didi

数组的大小可以在c中运行时确定吗?

转载 作者:行者123 更新时间:2023-11-30 16:17:09 34 4
gpt4 key购买 nike

据我所知,在 c 中编译之前,数组需要具有特定的大小。

我想知道为什么这段代码仍然有效?

int s;
printf("enter the array size: ");
scanf("%d",&s);

int a[s]; // Isn't s value determined at run time?

最佳答案

需要使用 ANSI 89 C 了解数组大小。该规范的 99 版本删除了此限制并允许使用可变大小的数组。

这里是此功能的 GNU 版本的文档

关于数组的大小可以在c中运行时确定吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56328305/

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