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 |
What are structs in c++?
Why c++ is not a pure oop language?
What is singleton pattern in c++?
How many different levels of pointers are there?
Write a function that swaps the values of two integers, using int* as the argument type?
What is using namespace std in c++?
Distinguish between a # include and #define.
List the merits and demerits of declaring a nested class in C++?
What is purpose of new operator?
Why is "using namespace std;" considered bad practice?
Should I learn c or c++ or c#?
Why are arrays usually processed with for loop?