在如下结构体定义中,不正确的是。
A: structstudent{longno;double score;};
B: structstud[20]{long no;doublescore;};
C: structstudent{longno;doublescore;}stud[20];
D: struct{longno;doublescore;}stud[100];
A: structstudent{longno;double score;};
B: structstud[20]{long no;doublescore;};
C: structstudent{longno;doublescore;}stud[20];
D: struct{longno;doublescore;}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: 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{intnum;charname[20];}s; B: structstudent{intnum;charname[20];}s; C: structstudent{intnum;charname[20];};students; D: structstudent{intnum;charname[20];};structstudents;
- 已知: Struct st{ Int num; Char sex; Float score; }stud,*p=&stud; 则对于结构体变量stud的成员num正确的引用是_________。
- 已知: struct st{ int num; char sex; float score; }stud,*p=&stud; 则对于结构体变量stud的成员num正确的引用是____。 A: stud->num B: st.num C: p->num D: p.num