C++ Programming Question: Download C++ Programming PDF

What do you mean by pure virtual functions?

Tweet Share WhatsApp

Answer:

A pure virtual member function is a member function that the base class forces derived classes to provide. Normally these member functions have no implementation. Pure virtual functions are equated to zero.
class Shape { public: virtual void draw() = 0; };

Download C++ Programming PDF Read All 120 C++ Programming Questions
Previous QuestionNext Question
What is a scope resolution operator?What is polymorphism in C++? Explain with an example?