the private data in this class should include a a first name, a last name, a middle initial, an employee id, a birthdate, a hiredate,
and an array of no more than 4 pointers to courses, but im not sure if im doing it right, this is what i have so far. How could i use the array of 4 pointers to store information about a course. I am reading this info from a file that has something like this with the first number being employee id the second being course name, third being course number and fourth being number of students.

9600 Math 2444 60

Code:


#include "Constants.cpp"

class Instructor
 {
  public:

   Instructor(string fn, string ln, string mi, string eid);
   ~Instructor();

   


  private:

   string firstName;
   string lastName;
   string middleInitial;
   string employeeID;
   Course *[4];

 };

#endif