• 2022-05-26
    已有定义 struct date{ int year; int month; int day; }d; struct student{ char name[20]; struct date birthday; }stu;对学生的出生年赋值的语句正确的是________。
    A: stu.d.year=2008;
    B: birthday.year=2008;
    C: stu.birthday.year=2008;
    D: d.year=2008;