C++ Programmer Question:

Explain what do you mean by pure virtual functions in C++?

Tweet Share WhatsApp

Answer:

Pure virtual function is a function which doesn't have an implementation and the same needs to be implemented by the the next immediate non-abstract class. (A class will become an abstract class if there is at-least a single pure virtual function and thus pure virtual functions are used to create interfaces in c++).

Download C++ Programmer PDF Read All 59 C++ Programmer Questions
Previous QuestionNext Question
Tell me what is an abstract class in C++?Tell us what do you mean by internal linking and external linking in c++?