I was asked how can a value of a const variable can be changed.
My my obvious answer was "pointers!" but I tried the next piece of code and I'm puzzled...
int main()
{
const int x = 5;
int *ptr = (int *)(&x); // "Cast away" the const-ness..
cout << "Value at " << ptr << ":"<< (*ptr) <<endl;
*ptr = 6;
cout << "Now the value of "<< ptr << " is: " << (*ptr) <<endl;
cout << "But the value of x is still " << x <<endl;
return 0;
}
And the output was:
Value at <some address> :5
Now the value of <same address> is: 6
But the value of x is still 5
Now, I'm not sure exactly what is returned from '&x' but it's definitely not the actual address of x, since the value at x wasn't changed!
But on the over hand, ptr did contain the value of x at the beginning! So, what is it exactly?
EDIT compiled with VS2010

xprobably just gets replaced by5wherever possible. Does the same thing happen in debug mode? – Ken Wayne VanderLinde Nov 13 '11 at 22:08#define X 5. Also, hopefully needless to say except for a puzzle...um... the way to change a const is to remove "const". – mike jones Nov 13 '11 at 22:11#define X 5, writing&Xwould cause a compiler error. – sepp2k Nov 13 '11 at 22:12