2024-11-05 07:47:55
在c语言的语法中,这样不行
如果你需要初始化
可以这样写
struct stu{
int a;
int b;
int c;
} student = {1,2,3};
这个我知道,其实,我是想怎样使上面的c,永远=a+b,就是
struct stu
{
int a;
int b;
int c=a+b;
},我想这样,但是这样肯定不行,这个应该怎样解决啊
在声明结构体的时候不能写这样的逻辑
只能在调用的地方明写。
比如struct stu student1;
student1.c = student1.a + student1.b;
好吧,谢了,
2024-11-05 08:03:27
2024-11-05 08:07:58