If class D is derived from a base class B
C++ supports multiple inheritance. What is the “diamond problem” that can occur with multiple inheritance? Give an example.
What are issues if we mix new and free in C++?
Identify the errors in the following program. #include <iostream> using namespace std; void main() { int i=5; while(i) { switch(i) { default: case 4: case 5: break; case 1: continue; case 2: case 3: break; } i-; } }
What is a memory leak in C++?
Explain function prototypes in C++.
What does it mean to take the address of a reference?
What is wrong with this statement? std::auto_ptr ptr(new char[10]);
What Are The Differences Between A C++ Struct And C++ Class?
Without using third variable write a code to swap two numbers.
When must you use a constructor initializer list?
What are the advantages/disadvantages of using #define?
If class D is derived from a base class B