Guest User

Untitled

a guest
Apr 26th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(){
  4. int *px = NULL;
  5. int **py = NULL;
  6. int a = 9999;
  7.  
  8. px = &a;
  9. py = &px;
  10. printf("Goblin receives %i damage!!!", **py);
  11. return(0);
  12. }
Add Comment
Please, Sign In to add comment