gpt4 book ai didi

c - 如何创建单个结构语句来声明数组并初始化?

转载 作者:太空宇宙 更新时间:2023-11-04 05:20:15 25 4
gpt4 key购买 nike

到目前为止,我有以下代码,我很确定我可以使用多个语句进行显式初始化,但我想学习如何使用单个语句进行初始化。

#include <stdio.h>
#include <stdlib.h>
#define LUNCHES 5

int main(void)
{
struct Food
{
char *n; /* “n” attribute of food */
int w, c; /* “w” and “c” attributes of food */
}

lunch[LUNCHES],
lunch[0] = {"apple pie", 4, 100},
lunch[1] = {"salsa", 2, 80};
}

我认为以下内容可行,但这是另一种说法。

 int main(void)
{
struct Food
{
char *n; /* “n” attribute of food */
int w, c; /* “w” and “c” attributes of food */
}

lunch[LUNCHES];
lunch[0] = {"apple pie", 4, 100};
lunch[1] = {"salsa", 2, 80};

最佳答案

你快到了:

 = { [0] = {"apple pie", 4, 100}, [1] = {"salsa", 2, 80} }

将是您的数组的初始化。

仅当您的编译器支持 C99 附带的“指定”初始值设定项时才会出现这种情况。

否则

 = { {"apple pie", 4, 100}, {"salsa", 2, 80} }

也可以。

关于c - 如何创建单个结构语句来声明数组并初始化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13349722/

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