首先创建两个结构体,一个描述date,一个作为个体student typedef struct date { int year; int month; int day; }date; typedef struct student { char name[20]; date birthday; }student...

首先创建两个结构体,一个描述date,一个作为个体student typedef struct date { int year; int month; int day; }date; typedef struct student { char name[20]; date birthday; }student...