c语言中,定义一个名为student_record的结构(用struct),包含学生姓名name,出生日期()。。。

2025-01-04 11:12:37
推荐回答(2个)
回答1:

struct date
{
int day ;
int month;
int year
};

struct student_record
{
char name[10];
struct date birthday;
int score;
}

回答2:

楼上正解struct date
{
int day ;
int month;
int year;
};

struct student_record
{
char name[10];
struct date birthday;
int score;
}