gpt4 book ai didi

c - 如何在结构初始化中使用#define

转载 作者:行者123 更新时间:2023-11-30 21:14:06 24 4
gpt4 key购买 nike

我不知道标题是否足够清楚,所以这就是我想做的。我想使用#define定义结构体中数组的大小。

我正在这样做,但它不想工作:

#ifndef DEF_MAIN
#define DEF_MAIN

#define TAILLE_TAB = 100;

typedef struct Personne Personne;
struct Personne
{
char nom[TAILLE_TAB];
char prenom[TAILLE_TAB];
int age;
};

#endif

但是我收到错误。

如果我输入:

{
char nom[100];
char prenom[100];
int age;
};

然后就可以了...
为什么第一个解决方案不起作用? =(
无法在同一文件的代码上使用#define VAR?

最佳答案

你的语法错误,它是:

#define TAILLE_TAB 100

关于c - 如何在结构初始化中使用#define,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26782626/

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