-
What is the importance of mutable keyword?
-
- It will not allow the data member to change within a const member function
- It will copy the values of the variable
- It allows the data member to change within a const member function
- All of above
- None of these
Correct Option: C
Mutable keyword allows assigning values to a data member belonging to a class defined as “Const” or constant.