(The Course class) Revise the Course class implementation in Listing, Course.cpp, as follows:
■ When adding a new student to the course, if the array capacity is exceeded, increase the array size by creating a new larger array and copying the contents of the current array to it.
■ Implement the dropStudent function.
■ Add a new function named clear() that removes all students from the course.
■ Implement the destructor and copy constructor to perform a deep copy in the class.
Write a test program that creates a course, adds three students, removes one, and
displays the students in the course.
Listing Course.cpp

We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.