What is the importance of mutable keyword?
Answer / Alpna Bharti
The mutable keyword in C++ allows a member function to modify a base class member that has been declared as const. Without the mutable keyword, any attempt to modify such a member would result in a compile error.
| Is This Answer Correct ? | 0 Yes | 0 No |
Differentiate between a constructor and a destructor in c++.
I want explanation for this assignment: how to connect mysql database using c/c++,please explain this detailly?
What do you mean by funtion prototype?
What is the use of :: operator in c++?
what do you mean by volatile variable?
Write about all the implicit member functions of a class?
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
What is unary operator? List out the different operators involved in the unary operator.
What is a linked list in c++?
How to give an alternate name to a namespace?
What does int * mean in c++?
Which one is better- macro or function?