Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

DO IT SO SIMPLE PLZ THANK YOU Write a C++ program to store 40 students informati

ID: 3755436 • Letter: D

Question

DO IT SO SIMPLE PLZ THANK YOU

Write a C++ program to store 40 students information in an array of structure. Each student’s record has the following fields; First Name, Last Name, Social Security Number, Student ID, Number of courses taken, and major. Your program should have at least the following functions:

Main()

Read each student’s record from a batch file and store it in an array of records. Create a text file.

Sort the list by name and store it in the second array of records.

Sort the list by social security number and store it in the second array of records.

Add a new record to the list.

Search student’s record by name. If more than one student are found with the same name then search by social security number.

Search student’s record by social security number.

Delete a record.

Display the first array of records.

Display the list sorted by name.

Display the list sorted by social security number..

Display a student’s record.

Explanation / Answer

Output