What are Virtual functions in C++ ? Virtual function is a member function which is re-defined by a derived class and declared within a base class. When you refer to a derived class object using a reference… View Answer
What is pure virtual function in C++ ? Answer : A virtual function will become pure virtual function… View Answer