fork(1) download
  1. #include <stdio.h>
  2.  
  3.  
  4. int main()
  5. {
  6. int x=5, y=1;
  7. int *p;
  8. p=&x;
  9.  
  10.  
  11. printf (p);
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout