已知教师记录描述为structteather{intid;struct{inty;intm;intd;}birth;}t;将变量t中的d成员赋值为12的语句为。
举一反三
- 中国大学MOOC: 已知教师记录描述为 struct teather{ int id; struct { int y; int m; int d; } birth;}t;将变量t中的d成员赋值为12的语句为 。(语句最后的分号也要写)
- 已知学生记录描述为: struct student { int no ; char name[20]; char sex; struct { int year; int month ; int day ; } birth; } s; 设结构变量 s 中的“ birth ”应是“ 1985 年 10 月 1 日”,则下面正确的赋值是:
- 已知学生记录描述为: struct student{ int no;char name[20];char sex;struct{int year;int month;int day;}birth; };struct student s; 设变量s中的生日应该是“1984年11月11日”,下列对生日的正确赋值是()
- 已知学生记录描述为: struct student { int num; char name[20]; struct { int year; int month; int day; }birth; }; struct student s; 下列对 “ 生日”的正确赋值方式是( )
- 08110062:已知职工记录描述为: struct workers{ int no; char name[20]; char sex; struct{ int day; int month; int year; }birth; }; struct workers w; 设变量w中的“生日”应是“1993年10月25日”,下列对“生日”的正确赋值方式是()。