以下scanf函数调用语句中对结构体变量成员的不正确引用是 struct pupil { char name[20]; int age int sex; } pup[5],*p; p=pup;

admin2009-02-15  29

问题 以下scanf函数调用语句中对结构体变量成员的不正确引用是    struct pupil    { char name[20];      int age      int sex;    } pup[5],*p;    p=pup;

选项 A、scanf("%s",pup[0].name);
B、scanf("%d",&pup[0].age);
C、scanf("%dT",&(p->sex));
D、scanf("%d",p->age);

答案8

解析 可用结构体变量名.数据成员名或者结构体指针->数据成员名两种方法来引用。注意:结构体类型的变量、数组和指针变量的定义。
转载请注明原文地址:https://kaotiyun.com/show/PPXp777K
0

随机试题
最新回复(0)