Add student tag inside

This commit is contained in:
Sambo Chea 2020-08-02 11:30:13 +07:00
parent b1fe773f8a
commit bc93e0313c

View File

@ -13,6 +13,12 @@ struct course_tag {
float avg;
};
struct student_tag {
struct person_tag student_info;
struct course_tag course_info;
struct student_tag *next;
}
void display_students(void);
void search_student(void);
void find_maximum(void);