InterviewSolution
Saved Bookmarks
| 1. |
What is the role of mutable storage class specifier? |
|
Answer» A constant class object’s member variable can be altered by declaring it using mutable storage class specifier. Applicable only for non-static and non-constant member variable of the class. |
|