Out of fgets() and gets() which function is safe to use?
What is the best c++ compiler?
when can we use copy constructor?
Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers
What is your strongest programming language (Java, ASP, C, C++, VB, HTML,C#, etc.)?
24 Answers Infosys, Microsoft, TCS,
What is code reusability in c++?
What is a float 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.
When is dynamic checking necessary?
What is a storage class? Mention the storage classes in c++.
What is the use of vtable?
write the programme that convert a interger to biniry number
How delete [] is different from delete?