【单选题】已知学生记录描述为 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;