Guest User

Untitled

a guest
Sep 14th, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.07 KB | None | 0 0
  1. const int x = 1;
  2. int *px = (int *) &x;
  3.  
  4. *px = 0;
  5.  
  6. printf("x is %d", x);
Advertisement
Add Comment
Please, Sign In to add comment