题目内容:
已知学生记录描述为: structstudent
{intno;
charname[20],sex;
struct
{intyear,month,day;
}birth;
};
structstudents;
设变量s中的"生日"是"1984年11月12日",对"birth"正确赋值的程序段是 A.year=1984;month=11;day=12;
B.year=1984;month=11;day=12;
C.birtyear=1984;birtmonth=11;birtday=12;
D.birtyear=1984;birtmonth=11;birtday=12;
参考答案:
答案解析: