Question: Design a student management system using C programming - **** PLEASE INCLUDE STEPS 1-15**** Each record of student should contain these information: First name, last

Design a student management system using C programming - ****PLEASE INCLUDE STEPS 1-15****

Each record of student should contain these information:

First name, last name, student number, course name, grade

Hint: you can use array for each of these variables, and the index of array indicates a specific student.( you can use any other solution )

For example: John Brown, 123456, Programming

firstName[0]=John, lastName[0]=Brown, stdNo[0]=123456, courseName[0]=Programming, grade[0]=89

You should have at least 10 predefined students ( If you use read and write on file you will get a bonus point) (1 point ) User should be able to see the list of students (1 point) User should be able to search student by name or Number (3 points) User should be able to register new students. (1 point) User should be able to edit a student ( any filed) find student by Number ( 5 points )

Example : edit student grade

Enter student No: 123456 ( user should enter the number)

Old grade : 89

Enter new grade: 99

Grade Updated

User should be able to delete an student find student by number (1 point)

Example: remove student

Enter student No: 123456 ( user should enter the number)

Student removed.

User should be able to sort students based on their First name and grade (3 points ) User should be able to get average of student grades ( 1 point) User should be able to get average of student grades based on course name (1point)

For example: average of grades in course programming

User should be able to exit the system (1 point)

Design a menu like this to ( any creative menu will get bonus point )

Please select:

1. Show list of student 2. Search a student by First Name 3. Search Student by Number 4. Register new student 5. Edit student fist name 6. Edit student last name 7. Edit student No 8. Edit student grade 9. Edit Student Course 10. Remove student 11. Get totall average of grades 12. Get average of grades by course 13. Sort student by grade 14. Sort students by name( A-Z) 15. exit

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!