Question: (C++ Please help) Currently using visual studio, and my program will not work Program Specification You are to create a student record program. It should
(C++ Please help) Currently using visual studio, and my program will not work
Program Specification
You are to create a student record program. It should track a student's ID number, first name, last name, street, city, state, zip, and GPA.
Your program should display a menu like the following:
A) Enter a new student
B) Display the students in the system
C) Remove a student
D) Exit
Your program should start with an empty array. Each time a new student is added you should dynamically allocate a new array that is one bigger than the old array, copy the data into the new array, and delete the old array. If the user chooses option B display the students in a well formatted table. You need to display, at a minimum, the users ID number, first name, and last name. To remove a student first display the table of students and ask for the student's ID number. Next create a new array one size smaller. Copy the data from one array to the other skipping the removed data. After a user finishes a menu option return them to the main menu until they choose to exit. You must use a minimum of 5 functions for this project but you are free to choose where and how to use them.
Input Validation You must validate input within reason. Determine for yourself what is acceptable for menus, GPA's, etc.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
