Define whitespace in C++.
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of volatile variable?
Explain the concept of copy constructor?
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
What is c++ flowchart?
Is c++ a low level language?
What is the difference between inline functions and macros?
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.
write infinite loop in C++ which does not use any variable or constant?
What are the two main components of c++?
What do the keywords volatile and mean mutable?
What are smart pointer? Whats its use?
What are the various compound assignment operators in c++?