Question: A base class called Shape and derived classes called Circle, Square, and Triangle. In the base class, make a virtual function called draw( ), and
A base class called Shape and derived classes called Circle, Square, and Triangle. In the base class, make a virtual function called draw( ), and override this in the derived classes. Make a pointer of Shape and objects of derived class and call draw( ) through the base-class pointers, to verify the behavior of the virtual function.
By using the above condition, create a simple “shape” hierarchy in C++.
Step by Step Solution
There are 3 Steps involved in it
include iostream using namespace std class Shape public Shape constructor of S... View full answer
Get step-by-step solutions from verified subject matter experts
