已知学生记录描述为 struct student { int no; char name[20]; char sex; struct { int year; int month; int day; } birth; }; struct student s;

admin2009-05-15  21

问题 已知学生记录描述为 struct student { int no; char name[20]; char sex; struct { int year; int month; int day; } birth; }; struct student s;变量s中的“生日”应是“1985年4月4日”,下列对“生日”的正确赋值方式是______。

选项 A、year=1985;month=4;day=4;
B、birth.year=1985;birth.month=4;birth.day=4;
C、s.year=1985;s.month=4;s.day=4;
D、s.birth.year=1985;s.birth.month=4;s.birth,day=4;

答案D

解析
转载请注明原文地址:https://kaotiyun.com/show/aEWp777K
0

相关试题推荐
随机试题
最新回复(0)