在如下结构体定义中,不正确的是()。
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 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 { 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: student { int num; char name[10]; char sex; }; B: struct student { int num; char name[10]; char sex; } C: struct student { int num; char name[10]; char sex; }; D: struct student { int num char name[10] char sex };
- 以下结构体的定义语句中,正确的是______。? 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;
- 以下关于结构体类型及变量的声明正确的是_____ 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;