• 2022-06-14
    有如下定义:struct date{ int yy,mm,dd;};struct worklist{ char name[20];char sex;struct date birthday;} person;对结构体变量person的出生年月进行赋值时,下面正确的赋值语句是( )。
    A: yy=1958;
    B: birthday.yy=1958;
    C: person.date.yy=1958;
    D: person.birthday.yy=1958;