Question: Design a student management system using C programming. Each record of student should contain these information: First name, last name, student number, course name, grade
Design a student management system using C programming.
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:
Show list of student
Search a student by First Name
Search Student by Number
Register new student
Edit student fist name
Edit student last name
Edit student No
Edit student grade
Edit Student Course
Remove student
Get totall average of grades
Get average of grades by course
Sort student by grade
Sort students by name( A-Z)
exit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
