So I am having trouble understanding my professor, would you write this in other words please? I am new to c++ and to english. What is a Driver Class?
The following is my assignment.
Create a new class called CUBIC which inherits from the QUADRATIC class and adds
the ability to subtract and display polynomials of degree 3 only. Create new
constructors for the derived class. Create a driver for the class that inputs
two cubic functions and subtract them.
so far I have created both classes and I inherit them already so i just need
the function members of the class tho. Please help me out.
A driver is usually a function/program that creates an instance of your class and then tests the various methods of that class to insure the class works properly.