已知:struct sk{ int a; floatb;}data,*p;若有p=&data,则对data中的成员a的正确引用是( )
A. (*p).data.a
B. (*p).a
C. p->data.a
D. p.data.a
查看答案
若有以下定义语句:struct student{ int num,age;};struct studentstu[3]={{101,20},{102,19},{103,18}},*p=stu;则以下错误的引用是( )
A. (p++)->num
B. p++
C. (*p).num
D. p=&stu.age
设有以下定义,p指向num域的是( )struct student{ int num;char name[10];}stu,*p;
A. p=&stu.num;
B. *p=stu.num;
C. p=(struct student*)&(stu.num);
D. p=(struct student*)stu.num;
设有一结构体类型变量定义如下:struct date{ int year;int month;int day;};struct worker{ char name[20];char sex;struct date birthday;}w1;若对结构体变量w1的出生年份进行赋值,下面正确的赋值语句是( )
A. year=1976
B. birthday.year=1976
C. w1.birthday.year=1976
D. w1.year=1976
若有以下程序段:struct note{ int n;int *pn;};int a=1,b=2,c=3;struct notes[3]={{1001,&a},{1002,&b},{1003,&c}};struct note *p=s;则以下表达式中值为2的是( )
A. (p++)->pn
B. *(p++)->pn
C. (*p).pn
D. *(++p)->pn