How do you invoke a base member function from a derived class in which you’ve overridden that function?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is ifstream c++?

0 Answers  


What is virtual table?

0 Answers  


Difference between pass by value and pass by reference?

0 Answers  


Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


What are containers in c++?

0 Answers  






How to give an alternate name to a namespace?

0 Answers  


How the endl and setw manipulator works?

0 Answers  


What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h

0 Answers  


What new()is different from malloc()?

0 Answers  


Write syntax to define friend functions in C++.

0 Answers   HAL,


What is the type of 'this' pointer?

0 Answers  


Describe Trees using C++ with an example.

0 Answers  


Categories