Answered step by step
Verified Expert Solution
Link Copied!

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: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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Ai And The Lottery Defying Odds With Intelligent Prediction

Authors: Gary Covella Ph D

1st Edition

B0CND1ZB98, 979-8223302568

More Books

Students also viewed these Databases questions

Question

1. Write down two or three of your greatest strengths.

Answered: 1 week ago

Question

What roles have these individuals played in your life?

Answered: 1 week ago

Question

2. Write two or three of your greatest weaknesses.

Answered: 1 week ago