What are proxy objects in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What things would you remember while making an interface?
write a program that takes 5 digit no and calculate 2 power that no and print it.
Why do we use the using declaration?
What is a list c++?
What are libraries in c++?
What do you mean by funtion prototype?
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
What is c++ mutable?
What is polymorphism and its type in c++?
What are the uses of static class data?
What is &x in c++?