What are the comments in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the concept of copy constructor?
Does c++ have a hash table?
What are maps in c++?
What is oops in c++?
What is c++ library?
What is c++ & why it is used?
What is function overriding?
What is type of 'this' pointer? Explain when it is get created?
What do you mean by overhead in c++?
What is a c++ map?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
what is pre-processor in C++?