c语言中如何定义一个结构体

如题所述

第1个回答  2010-03-26
struct 结构名 {成员列表};
如struct a {int a;char a[10]};
第2个回答  2010-03-26
struct Name
{
int a;
int b;
}
第3个回答  2019-12-23
struct student //结构体类型的说明与定义分开。 声明 {...
2.
2 . 不环保的方式 #include <stdio.h> struct student /*声明时直接定义*/ { int...
3.
相似回答