I had an article, but I lost it. It showed and described a couple of C/C++ tricks that people should be careful. One of them interested me but now that I am trying to repli
we can change the const variable value by the following code :
const int x=5; printf("\nValue of x=%d",x); *(int *)&x=7; printf("\nNew value of x=%d",x);