What is the difference between virtual functions and pure virtual functions?
A virtual function is a member function of base class which can be redefined by derived class. A pure virtual function is a member function of base class whose only declaration is provided in base class and should be defined in derived class otherwise derived class also becomes abstract.
| Is This Answer Correct ? | 0 Yes | 0 No |
Define namespace.
Discuss about iteration statements in C++ .
Tell How To Check Whether A Linked List Is Circular ?
C++ Public access specifier instead of Private – What is bad ?
In C++ what is a vtable and how does it work?
Write a C++ Program to find Square Root of a number using sqrt() function.
What is the purpose of a constructor? Destructor?
What is bool in C++
Explain why C++ is not purely Object Oriented Language
Factory Method C++ – How to delete pointers returned by it
what do you mean by exception handling in C++?
What is name mangling/name decoration?