Question: Objective will be to construct your first list data structure using an array.
Your data structure will follow proper OOP principles and allow for storing data of elemType (i.e. data determined at run-time, which in this case will be student data).
Part 1: Construct the Student Class (Student.h and Student.cpp)
Your student class should include a Student.h header file for your class definitions and a Student.cpp implementation file comprised of first name, last name, id, and For each field, you will apply the proper get / set methods.
Next, overload operators for comparison and output.
Part 2: Construct the arrayListType class
Part 3: Construct your Main application (main.cpp)
Your application will prepare a new arrayListType for storing 30 students using txt file as input file