struct student{ int num;char sex;char...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的语句是 ;
- 下列结构体的定义正确的是( )。 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 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 ; 其中num是结构体 ________