从堆区申请能存5个结构体变量的数组的空间,完成数组中成员的输入,根据学生成绩,用选择排序对学生排序并输出。
求以下结构体的大小
typedef struct {
int id;4个字节
char name[50] ;50个字节
char grde[3];3个字节
}Student;60
typedef struct {
int id;4个字节
char name[50] ;50个字节
Student student;60字节
}Teacher;116个字节
typedef struct {
int id;4个字节
char name [50];50个字节
Teacher teacher;116个字节
}Course ;172个字节