How to construct virtual constructor
Answer Posted / vishwa
there is no need to use vitual constructors in C++.
because the construction of the class tree will be happened
from the base class to child class.
| Is This Answer Correct ? | 9 Yes | 9 No |
Post New Answer View All Answers
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
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
When does a 'this' pointer get created?
What is data binding in c++?
If I is an integer variable, which is faster ++i or i++?
Is c++ built on c?
Is oops and c++ same?
Define 'std'.
What do you understand by pure virtual function? Write about its use?
Is python better than c++?
What are the two types of comments, and how do they differ?
What is ostream in c++?
Why can’t you call invariants() as the first line of your constructor?
What causes a runtime error c++?
What is an inclusion guard?