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
#include int main( void ) { int i = 3; const int *pi = &i; int *pj = (int*)&i; *pj = 4; getchar(); return 0; }