Add display menu for show details

This commit is contained in:
Sambo Chea 2020-08-02 11:35:29 +07:00
parent 1f0e556137
commit 11a394e2ef

View File

@ -19,16 +19,29 @@ struct student_tag {
struct student_tag *next; struct student_tag *next;
}; };
void display_students(void); // core functions
void search_student(void); void display_students();
void find_maximum(void); void search_student();
void find_failed(void); void find_maximum();
void find_failed();
void update_file(); void update_file();
void read_file(); void read_file();
void quite(); void quite();
// util functions
void display_menu();
int main(void) { int main(void) {
printf("Welcome!"); printf("Welcome!");
printf("Goodbye!"); printf("Goodbye!");
}
void display_menu() {
printf("(1) Display students details\n");
printf("(2) Search for a students mark\n");
printf("(3) Find the details of student with the largest average\n");
printf("(4) Find the details of failed students\n");
printf("(5) Add new student to the record\n");
printf("(6) Quit program\n");
} }