Guest User

Untitled

a guest
Apr 25th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. int *ptr = (int *)0x1234;
  2. *ptr = 2;
  3. /* no further code in the scope uses ptr */
  4.  
  5. volatile int *ptr = 0x12345;
  6. *ptr = 2;
Add Comment
Please, Sign In to add comment