Answer Posted / hrpynux@gmail.com
A C++ virtual function is a member function in the base class that you redefine in a derived class. It is declared using the virtual keyword. It is used to tell the compiler to perform dynamic linkage or late binding on the function. ... A 'virtual' is a keyword preceding the normal declaration of a function.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
What is cohesion in oop?
What is the history of c++?
Explain what are mutator methods in c++?
What makes a language oop?
the maximum length of a character constant can be a) 2 b) 1 c) 8
What is an adaptor class in c++?
What is the difference between function overloading and operator overloading?
How to declaring variables in c++?
Does c++ support exception handling?
What is a set in c++?
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
write a programe to calculate the simple intrest and compund intrest using by function overlading
What is the difference between while and do while loop? Explain with examples.
Do class declarations end with a semicolon? Do class method definitions?