Advertisement
Guest User

Untitled

a guest
Apr 15th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int x = 55;
  5. int *x = x;
  6. printf("%d\n", x);
  7. printf("%p\n", &x);
  8. printf("%d\n", *x);
  9. printf("%p\n", &*x);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement