Explain virtual class and friend class.
No Answer is Posted For this Question
Be the First to Post Answer
Why would you make a destructor virtual?
What is the difference between a type-specific template friend class and a general template friend class?
What is a dangling pointer?
What are raw sockets, where they are efficient?
What is a virtual destructor?
simple c++ program for "abcde123ba" convert "ab321edcba" with out using string
Specify different types of decision control statements?
What flag means?
What is the function of the keyword ‘volatile’ in C++?
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
Using a smart pointer can we iterate through a container?
What is a pure virtual function? Why is it represented as = 0...how is the internal implementation for the same