Which should be more useful: the protected and public virtuals?
No Answer is Posted For this Question
Be the First to Post Answer
What is the equivalent of Pascal's Real a) unsigned int b) float c) char
What are pointer-to-members? Explain.
What is the use of ‘using’ declaration?
What is the maximum combined length of command line arguments including the space between adjacent arguments?
What is the main purpose of overloading operators?
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.
How do you declare A pointer to function which receives an int pointer and returns a float pointer
what is the use of Namespace in c++.
What is c++ manipulator?
What is the most powerful coding language?
Enter n no. of element and delete value from desire position
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00