gpt4 book ai didi

c - 在 C 中,为什么不能将 const 变量用作数组大小初始值设定项?

转载 作者:太空狗 更新时间:2023-10-29 16:39:44 27 4
gpt4 key购买 nike

<分区>

在下面的代码中,const int 不能用作数组大小:

const int sz = 0;
typedef struct
{
char s[sz];
} st;

int main()
{
st obj;
strcpy(obj.s, "hello world");
printf("%s", obj.s);
return 0;
}

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