const int z = 10;
const int *x = &z;
*const_cast <int *> (x) = 1;
const int &ref = z;

const_cast<int &> (ref) = 15;

cout<< "z= " << z;
cout <<"*x...