若已定义: struct student {int num; char sex; int age; }stu1; 叙述错误的是( )
A: stu1是结构类型名
B: num,sex,age都是结构变量stu1的成员
C: stu1是用户定义的结构类型变量名
D: struct student是结构类型名
A: stu1是结构类型名
B: num,sex,age都是结构变量stu1的成员
C: stu1是用户定义的结构类型变量名
D: struct student是结构类型名
举一反三
- 下列选项中不能够定义一个结构体类型变量stu的是 。 A: struct student { int num; int age; } stu; B: struct student { int num; int age; }; student stu; C: struct {int num; int age; } stu; D: struct student {int num; int age; }; struct student stu;
- 若有如下说明语句,则下面叙述中不正确的是( )。struct student{ long num; char name[20]; char sex; int age;} stu; A: struct是结构体类型关键字 B: struct student是结构体类型 C: num,name,sex,age都是结构体成员名 D: stu是结构体类型名
- 以下各项用于定义结构体类型,并定义结构体变量,其中正确的是________。 A: struct student { char num[5]; int score; }; student stu1,stu2; B: struct student{ char num[5]; int score;};struct student stu1 stu2; C: struct student { char num[5]; int score=96; }; struct student stu1,stu2; D: struct student{ char num[5]; int score;};struct student stu1,stu2;
- 以下结构体的定义语句中,正确的是______。? struct student {int num; char name[10];int age;}stu;|struct {int num; char name[10];int age;}student; struct student stu;|struct student {int num; char name[10]; int age;}; student stu;|struct student {int num; char name[10];int age;};stu;
- 对以下定义,不正确的叙述是( )。struct student { int num; char name[20]; } stu; A: struct是定义结构体类型的关键字 B: stu是结构体类型名 C: num, name都是结构体成员名 D: struct student是结构体类型名