Change your "course" struct into a class. Courses have a title, department, number and section. Be sure to do the following: Write accessors and mutators Create a constructor Write a header with #ifndef and #define Write an implementation cpp Write a driver file (like main.cpp) Write a print function Your main in the driver program might look like this: int main() { Course a("Computer Science I","CSI",201,10); Course b; Course c; Course d; d.settitle("CS II"); d.setdepartment("CSI"); d.setsection(10); d.setnumber(202); cout << d.getnumber() << endl; cout << "a is "; a.print(); cout << "b is "; b.print(); cout << "c is "; c.print(); cout << "d is "; d.print(); }