const int * func() const
Learn about the const for pointer values and how it works for type qualifiers.
We'll cover the following...
Returning a mutable pointer to a const
value is useful. The pointed data cannot be modified, unlike const
pointers, it is even taken into account by the compiler. As shown below.