struct date{int year,month,day;};struct student{char name[12];char sex;struct date birthday;float sc[2];};
2 回答
慕哥6287543
TA贡献1831条经验 获得超10个赞
struct date 是一种类型,表示的是时间格式,等同于int,char。它所声明的一个变量叫做birthday,并且限制了birthday的格式为 年/月/日
添加回答
举报
0/150
提交
取消