C++ Programming Question:
Download Questions PDF

What do you mean by pure virtual functions?

C++ Programming Interview Question
C++ Programming Interview Question

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 Interview Questions And Answers PDF

Previous QuestionNext Question
What is a scope resolution operator?What is polymorphism in C++? Explain with an example?