已知:[br][/br] 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
A: stud->num
B: st.num
C: p->num
D: p.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
- 已知: Struct st{ Int num; Char sex; Float score; }stud,*p=&stud; 则对于结构体变量stud的成员num正确的引用是_________。
- 以下对结构体类型的变量定义中不正确的是 。 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;
- struct student { int num; char sex; char name[20]; float score; } st ; 其中num是结构体 ________
- 若有以下定义,则下列赋值语句中不正确的是( )。struct student { int num; char name[20]; }st,*p=&st; A: st.num=1001; B: st.name="Jack"; C: (*p).num=1002; D: p->;num=1003;