Question: Write a complete C or C + + program to implement student directory. Consider the structure fields given below. Your program should have the following
Write a complete C or C program to implement student directory. Consider the structure fields given below. Your program should have the following menu. Write necessary user defined functions for each of the menu entries: Menu: Add a new student to directory Delete a student from the directory List available students Search a student: A Search according to student id B Search according to student name Update student information Sort the listA Sort according to student id ascending orderB Sort according to student name alphabetic orderC Sort according to registration year descending order Display the student information holding max. cgpa Quit struct date int day, month, year; ;struct student int stdid; char stdname stdsurname; struct date regdate; float cgpa; studentdirectory;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
