已知学生记录描述为:struct student{ int no; char name[20];char sex; struct{int year; int month; int day;}birth;};struct student s;设变量s中的“生日”应该是“1984年11月11日”,下列对“生日”的正确赋值方式是( )。
A. year=1984;month=11;day=11;
B. birth.year=1984;birth.month=11;birth.day=11;
C. s.year=1984;s.month=11;s.day=11;
D. s.birth.year=1984;s.birth.month=11;s.birth.day=11;
以下scanf函数调用语句中对结构体变量成员的不正确引用是()。structpupil{charname[20];intage;intsex;}pup[5],*p;p=pup;
A. scanf("%s",pup[0].name);
B. scanf("%d",&pup[0].age);
C. scanf("%d",&(p->sex));
D. scanf("%d",p->age);