Explain virtual class and friend class.


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

Post New Answer

More C++ General Interview Questions

What does return 0 do in c++?

0 Answers  


Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?

0 Answers  


What is a character in c++?

0 Answers  


What is a flag in c++?

0 Answers  


What do you mean by inheritance in c++?

0 Answers  






When to use “const” reference arguments in a function?

0 Answers  


How to write a program such that it will delete itself after exectution?

3 Answers  


What are stacks?

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 do the header files usually contains?

0 Answers  


What is the difference between interpreters and compilers?

0 Answers  


What are mutator methods in c++?

0 Answers  


Categories