C++ Programmer Question:

Do you know what is the role of mutable storage class specifier?

Tweet Share WhatsApp

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.

Download C++ Programmer PDF Read All 59 C++ Programmer Questions
Previous QuestionNext Question
Tell us can we use malloc() function of C language to allocate dynamic memory in C++?Tell me how can a C function be called in a C++ program?