Mega Code Archive

 
Categories / C++ Tutorial / Data Types
 

Use const_cast on a const reference

#include <iostream> using namespace std; void sqrval(const int &val) {   const_cast<int &> (val) = val * val; } int main() {   int x = 10;   cout << "x before call: " << x << endl;   sqrval(x);   cout << "x after call: " << x << endl;   return 0; } x before call: 10 x after call: 100