• 2021-04-14
    已知学生记录描述为: struct student { int no ; char name[20]; char sex; struct { int year; int month ; int day ; } birth; } s; 设结构变量 s 中的“ birth ”应是“ 1985 年 10 月 1 日”,则下面正确的赋值是:
  • 举一反三