what you know about c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is pointer -to-members in C++? Give their syntax?
How do you allocate and deallocate memory in C++?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
Is c++ free?
Describe linked list using C++ with an example.
What is pointer to member?
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.
Define namespace in c++?
What is an Object/Instance?
What are advantages of using friend classes?
What do you mean by pure virtual functions in C++? Give an example?
What is class invariant in c++?