struct student { int num; char sex,name[20]; float score; }st1,*p; p=&st1; 不出现st1,却能给st1的num成员赋值为16的语句是 ;
举一反三
- struct student { int num; char sex; char name[20]; float score; } st ; 给st的num成员赋值为16,应写出的语句是 ;
- struct student{ int num;char sex,name[...st1的num成员赋值为16的语句是 ;
- struct student { int num; char sex; char name[20]; float score; } st ; 其中num是结构体 ________
- 若有以下定义,则下列赋值语句中不正确的是。 struct student { int num; char name[20]; }st,*p=&st;
- 下列声明结构体变量错误的是( ) A: A.struct student { int no; char name[16]; }st1,st2; B: B. struct student{ int no;char name[16];};struct student st1,st2; C: C.struct student { int no; char name[16]; }; struct st1,st2; D: D.struct student{ int no;char name[16]; };student st1,st2;