daily Routine of father
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by forward referencing and when should it be used?
what is COPY CONSTRUCTOR and what is it used for?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?
What do you mean by volatile and mutable keywords used in c++?
Why is main function important?
If you don’t declare a return value, what type of return value is assumed?
What is a sequence in c++?
What is difference between malloc()/free() and new/delete?
How do you invoke a base member function from a derived class in which you have not overridden that function?
Why do we use double in c++?
what does the following statement mean? int (*a)[4]