fork(8) download
  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5. int i;
  6. int*pi = &i;
  7.  
  8. scanf("%d",pi);
  9. printf("%d\n", i+5);
  10. }
Success #stdin #stdout 0s 2172KB
stdin
11
stdout
16