Difference between pointer to constant vs. Pointer constant
No Answer is Posted For this Question
Be the First to Post Answer
What is buffering in c++?
What is the use of "new" operator?
What is the best c++ book?
Explain "passing by value", "passing by pointer" and "passing by reference" ?
Is c++ platform dependent?
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.
Is java a c++?
What is c++ map?
What is c++ flowchart?
Is c++ a good beginners programming language?
What is size of a object of following class? class Foo { public: void foo(){} }
Can comments be longer than one line?