What is srand c++?
No Answer is Posted For this Question
Be the First to Post Answer
what Is DCS ? what i will get benefit when i did?
What is the first name of c++?
Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].
What is the best c++ compiler for windows 10?
What is the difference between an external iterator and an internal iterator?
Is it possible to get the source code back from binary file?
Explain the difference between using macro and inline functions?
What is the difference between a reference and a pointer?
What you know about structures in C++?
0 Answers Agilent, ZS Associates,
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.
Which one of the following describes characteristics of "protected" inheritance? a) The base class has access only to the public or protected members of the derived class. b) The derived class has non-public, inheritable, access to all but the private members of the base class. c) The derived class has access to all members of the base class. d) The private members of the base class are visible within the derived class. e) Public members of the derived class are privately accessible from the base class.
Generally variables are stored in heap memory. When he variables are created in stack?