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", ptr);
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 4292KB
stdin
Standard input is empty
stdout
161194052