Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<unistd.h>
  3. void main()
  4. {
  5. int x = 3;
  6. while (1)
  7. {
  8. printf("%d %p\n", x, &x);
  9. sleep(5);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement