What do you mean by inheritance in c++?


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

Post New Answer

More C++ General Interview Questions

What is isdigit c++?

0 Answers  


Are there interfaces in c++?

0 Answers  


What is a tuple c++?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


What is operators in c++?

0 Answers  






Write any small program that will compile in "C" but not in "C++"?

4 Answers  


What is c++ redistributable?

0 Answers  


Difference between declaration and definition of a variable.

0 Answers  


1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v

5 Answers   Quark,


Write about c++ storage classes?

0 Answers  


Is linux written in c or c++?

0 Answers  


What is this pointer in c++?

1 Answers  


Categories