Question
Project Description: In this project ( please use linked list in c programming), you are going to maintain a database of all students attending Montgomery
Project Description: In this project ( please use linked list in c programming), you are going to maintain a database of all students attending Montgomery College using linked list. There are two types of structures in this project. For each course, we have a structure called: "course". It has the following member elements: Course Name --5 char long (such as ENEE) Course ID integer (such as 150) Course CRN integer (such as 33561) For each student, we have a structure called "student" with the following member elements: First Name 100 char long Last Name 100 char long MC Number 10 char long (such as M12345678) Number of Courses registered integer (no more than 10) Array of Courses a 10 element array of "course" elements next pointer to the next student Structure in the list In your program, you will display a prompt list> and wait for the user to enter one of the four choices (1) insert (2) delete (3) display (4) exit. If an invalid choice is entered, display error message "Invalid Choice." and wait for next input. If choice is 1, the program will prompt the user to enter a student record. The record will then be inserted into a sorted linked list based on the MC number of the student. For each student, the record will be entered line by line in the following manner. No individual prompt is needed for each item.
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