Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const int x = 1;
- int main(int) {
- int *px = (int *) &x;
- *px = 0;
- printf("x is %d", x);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement