fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int hey(), reply;
  6. return 0;
  7. }
  8.  
  9. int hey()
  10. {
  11. printf("Hello");
  12. };
Success #stdin #stdout 0s 2288KB
stdin
Standard input is empty
stdout
Standard output is empty