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