What is the difference between containment and delegation?
No Answer is Posted For this Question
Be the First to Post Answer
What is general format for a prototype?
Can a list of string be stored within a two dimensional array?
How important is c++?
Difference between static global and global?
16 Answers Microsoft, Symphony, Wipro,
What is Namespace?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
You want to link a c++ program to c functions. How would you do it?
What is endl?
Does c++ support exception handling?
Can we change the basic meaning of an operator in c++?
What are the comments in c++?
What is a storage class used in c++?