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.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 4308KB
stdin
Standard input is empty
stdout
1217228580
1217228580