在如下结构体定义中,不正确的是○。
A: struct student { int no; char name[10]; float score; }
B: struct stud[20] { int no; char name[10]; float score; }
C: struct student { int no; char name[10]; float score; }stud[20];
D: struct{int no;char name[10];float score;}stud[100];
A: struct student { int no; char name[10]; float score; }
B: struct stud[20] { int no; char name[10]; float score; }
C: struct student { int no; char name[10]; float score; }stud[20];
D: struct{int no;char name[10];float score;}stud[100];
举一反三
- 在如下结构体中,不正确的是( )。 A: struct student {char name[10]; float score; }; B: struct stu[5] {char name[10]; float score; }; C: struct student {char name[10]; float score; } stu[5]; D: struct {char name[10]; float score; }stu[5];
- 以下对结构体类型的变量定义中不正确的是 。 A: B: define STUD struct student STUD {long num; char name[20]; char sex; float score;}; STUD stud1,stud2; C: struct student {long num; char name[20]; char sex; float score; }stud1,stud2; D: struct {long num; char name[20]; char sex; float score; } stud1,stud2; E: struct {long num; char name[20]; char sex; float score; }student;struct student stud1,stud2;
- 在如下结构体定义中,不正确的是()。 A: struct teacher{ int no; char name[10]; float salary;}; B: struct tea[20]{ int no; char name[10]; float salary;}; C: struct teacher{ int no; char name[10]; float salary; }tea; D: struct{ int no; char name[10]; float salary; }tea;
- 以下关于结构体类型及变量的声明正确的是_____ A: struct student{char name[16];int age}stu1; B: struct student{int age, rank}stu1; C: struct student{char name[16];int age;float score;};student stu1; D: struct student{char name[16];int age, rank;float score;};struct student student;
- struct student { int num; char sex; char name[20]; float score; } st ; 其中num是结构体 ________