Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started