Answer Posted / tiru
virtual table contains the address of the virtual functions
and pointers to the objects of the each of the derived
classes.
Is This Answer Correct ? | 6 Yes | 12 No |
Post New Answer View All Answers
What are literals in C++?
Can you write a function similar to printf()?
Explain the scope of resolution operator.
How can a called function determine the number of arguments that have been passed to it?
Difference between inline functions and macros?
what is the use of void main() in C++ language?
Why c++ is called oop?
What is a list c++?
What is c++ redistributable?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
How do you add an element to a set in c++?
How can I learn dev c++ programming?
What are the differences between malloc() and calloc()?
List the features of oops in c++?
What is the rule of three?