• 2022-05-26
    已知学生记录描述为[br][/br] struct student[br][/br] {int no;[br][/br] char name[20];[br][/br] char sex;[br][/br] struct[br][/br] {int year; int month; int day;[br][/br] }birth;[br][/br]};[br][/br] struct student s;[br][/br] 设变量s中的“生日”应是“1999年11月11日
    A: year=1999;month=11;day=11;
    B: irth.year=1999;birth.month=11;birth.day=11;
    C: s.year=1999;s.month=11;s.day=11;
    D: s.birth.year=1999;s.birth.month=11;s.birth.day=11;
  • 举一反三