
Unconsting a const Variable
There are two types of const data storage: true const and contractual const. const int cn = 5; // true const A contractual const variable is a non-const one, which is treated as though it were const: void ReadValue(const int& num){ cout