注意:此页面搜索的是所有试题
设有下列程序段,则scanf函数调用语句中对结构体变量成员的不正确引用为(   )。

struct student

{ char name[20];

int age;

char sex;

}stu[5], *p;

p=stu;

(2分)
Ascanf("%s",stu[0].name);
Bscanf("%d",p->age;
Cscanf("%c",&(p->sex));
Dscanf("%d",&stu[0].age);

参考答案