1、先定义结构,再说明结构变量。
struct stu{
int num;
char name[20]; char sex;
float score; };
struct stu boy1,boy2;
2、在定义结构类型的同时说明结构变量。
struct stu{
int num;
char name[20]; char sex;
float score;
}boy1,boy2;
3、匿名结构体定义结构变量。
struct{
int num;
char name[20]; char sex;
float score; }boy1,boy2;
注意:
结构体变量名没有任何意义, &结构体变量名== &结构体变量名.第一个成员名 |
|