已知学生记录描述为: 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; 下列对 “ 生日”的正确赋值方式是( )
- 已知学生记录描述为:struct student { int no; char name [20]; char sex; struct{ int year; int month; int day; }brith;};struct student s;设变量s中的“生日”应是“1984年11月11日”,下列对“生日”的正确赋值方式是( )。 A: year=1984; month=11; day=11; B: brith.year=1984; brith.month=11; brith.day=11; C: s.year=1984; s.month=11; s.day=11; D: s.brith.year=1984; s.brith.month=11; s.brith.day=11;
- 已知学生记录描述为:struct student { int no; char name[20]; char sex; struct { int year; int month; int day; } birth; } s;设变量s中的“生日”是1984年11月11日,下列对“生日”的正确赋值方式是________。 A: year = 1984;month = 11;day = 11; B: birth.year = 1984;birth.month = 11;birth.day = 11; C: s.year = 1984;s.month = 11; s.day = 11; D: s.birth.year = 1984;s.birth.month = 11;s.birth.day = 11;
- 已知学生记录描述为: 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 num; char name[20]; struct { int year;int month;int day;}birth;};struct student s;下列对“生日”的正确赋值方式是( ) A: year=1980; month=6; day=11; B: birth.year=1980;birth.month=6;birth.day=11; C: s.year=1980; s.month=6; s.day=11; D: s.birth.year=1980; s.birth.month=6; s.birth.day=11;