Which software is used to run c++ program?
What is the oldest programming language?
What is the purpose of template?
In a function declaration what does extern means?
Write a corrected statement in c++ so that the statement will work properly. x =+ 7;
Explain selection sorting?
Which is the best c++ compiler for beginners?
What is a driver program?
what is data encapsulation in C++?
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.
Is c++ vector a linked list?
What is the prototype of printf function?
int *p = NULL; printf("%1d",p) ; what will be the output of this above code?