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