Will a C compiler always compile C++ code
a) Yes
b) No
c) Only optimized compilers
What is an action class?
Generally variables are stored in heap memory. When he variables are created in stack?
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 is a volatile variable in c++?
What are the effects after calling the delete this operator ?
Is java made in c++?
Differentiate between an inspector and a mutator ?
What are vtable and vptr?
What is c++ try block?
what are the iterator and generic algorithms.
What is a pure virtual function? Why is it represented as = 0...how is the internal implementation for the same
Why main function is special in c++?