If class D is derived from a base class B
No Answer is Posted For this Question
Be the First to Post Answer
What is pass by value & reference.
Write a C++ Program to find Square Root of a number using sqrt() function.
what is a pragma 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 virtual base class?
Can we call a virtual function from a constructor?
It is possible to build a C++ compiler on top of a C compiler. How would you do this?
Tell me about virtual function
What is the difference between Stack and Queue in C++?
0 Answers Global Logic, iNautix,
What is the difference between creating an object, using 'new' and using 'malloc'?
How can a C function be called in a C++ program?
What is the difference between public, private, and protected inheritance?