A program has been started for you: student_project.cpp.You must finish the code to read data from a data file into the parallel arrays as follows: (the arrays are already defined in the code)
Student Number (5 digits)
Student name
Advisor last name (Smith, Jones, or Atkins)
Major (CIS, Math, or English)
Cost of tuition
The data file that is to be used is “cslist.txt” and is included with this assignment.
Function stubs have also been written for you.These are functions that are called at the proper time, but do not have code created yet.
You are to finish these stubs as follows:
start_program() read all data from the data file into parallel arrays.The valiable “count” will keep track of how many students have been read in
print_all_info() – Print all student information from the arrays
print_specific_major()- Print all students of a specific major (prompt for the major)
print_advisor_list()-Print all students who have a specific advisor (prompt for the advisor name)
print_total_tuition()-Print the total amount of tuition
new_report()- Report of your choice (make up a report)
There are a number of programs stored the link, review notes, that show how to read a text file into parallel arrays and how to search the arrays