fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int p = 3;
  6. int* ptr;
  7.  
  8. ptr = &p;
  9.  
  10. printf("%d\n", &p);
  11. printf("%d\n", ptr);
  12. printf("%d\n", &ptr);
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 4340KB
stdin
Standard input is empty
stdout
-1487660228
-1487660228
-1487660224