How do you invoke a base member function from a derived class in which you have not 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 it is and how it might be called (2 methods).

0 Answers  


What is linked list in c++?

0 Answers  


What is a local variable?

0 Answers  


Can you explain the term "resource acquisition is initialization?"

1 Answers   Amazon,


Is c++ an oop?

0 Answers  






What are the various oops concepts in c++?

0 Answers  


How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?

0 Answers  


What is an inline function in c++?

0 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


What new()is different from malloc()?

0 Answers  


What are the three forms of cin.get() and what are their differences?

0 Answers  


What is a protocol class?

1 Answers  


Categories