Is java the same as c++?
Write a program and call it sortcheck.cpp which receives 10 numbers from input and checks whether these numbers are in ascending order or not. You are not allowed to use arrays. You should not define more than three variables
when can we use copy constructor?
What are associate containers?
int *p = NULL; printf("%1d",p) ; what will be the output of this above code?
Is c better than c++?
implement stack using stack.h headerfile functions
1 Answers Exilant, GMG, Subex, University,
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 the benefits of pointers?
What is the use of volatile keyword in c++? Give an example.
What is meant by a delegate?
How do I run c++?
Why should you learn c++?