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:1- Add a new student to directory2- Delete a student from the directory3- List available students4- Search a student: A Search according to student id B Search according to student name5- Update student information6- Sort the listA Sort according to student id (ascending order)B Sort according to student name (alphabetic order)C Sort according to registration year (descending order)7- Display the student information holding max. cgpa8- Quit struct date { int day, month, year; };struct student { int std_id; char std_name[20], std_surname[20]; struct date reg_date; float cgpa; }student_directory[100];

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!