Under what conditions is multiple inheritance not recommended?
Answer / ackmed
If you derive from more than one base classes with the same
parent, then that parent should be a virtual base class.
| Is This Answer Correct ? | 4 Yes | 0 No |
Can I create my own functions in c++?
What is meant by forward referencing and when should it be used?
Is it possible for the objects to read and write themselves?
On throwing an exception by the animal constructor in p = new animalq, can memory leak occur?
What are different types of loops in c++?
What is runtime errors c++?
let a,b,c be three integer numbers.write a c++ program with a function void rotate 1()such that a->b->c and c->a.
How a new operator differs from the operator new?
What does new return if there is insufficient memory to make your new object?
Write any small program that will compile in "C" but not in "C++"?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
Can we declare destructor as static? Explain?