#include "course.h" using namespace std; int main() { Course c; Course c1 ("CS261", 3, "Instructor"); c.display(); c1.display(); //delete [] c1.roster return 0; }