• 2022-05-26
    若有下列定义,则对结构体变量的成员引用错误的是( )。struct date { int year; int month; int day;}struct student{int no;char name[16];date birthday;}stud;
    A: stud.no
    B: stud.name
    C: stud.birthday
    D: stud.birthday.year