假设结构指针p已定义并正确赋值,其指向的结构变量有一个成员是int型的num,则语句 *p.num=100; 是正确的。
举一反三
- 已知: 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
- 当p指向结构体变量stu时,以下哪种方法无法引用成员num( )。 A: stu.num B: (*p).num C: p->;nun D: p.num
- 已知:[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
- 有以下说明语句,对结构体变量s的成员num的不正确引用是 。[img=135x83]18039a948484934.png[/img] A: s.num B: *p.num C: p->num D: (*p).num
- 若有定义:int i;,则使指针p指向变量i的定义语句是____,使指针p指向变量i的赋值语句是____。