• 2021-04-14
    设有一结构体类型变量定义如下:
    struct date
    { int year;
    int month;
    int day;
    };
    struct worklist
    { char name[20];
    char sex;
    struct date birthday;
    } person;
    若对结构体变量person的出生年份进行赋值时,下面正确的赋值语句是
  • 举一反三