结构体成员
结构体的成员可以是其他结构体,如:cpp struct date { int month; int day; int year; }; struct student { int num; char name[20]; struct date birthday; };
student
结构体的 birthday
成员就是 date
类型。
8.66MB
文件大小:
评论区