以下scanf函数调用语句中,对结构体变量成员的不正确引用是()。 struct pupil {char name[20 ]; int age ; int sex; }pup[5],*p; p=pup;
以下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(“%d“,&sex);
D.scanf(“%d“,P->age);
正确答案:C