fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int x;
  6.  
  7. if (x>=0)
  8. {
  9. printf ("Hello World");
  10. }
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Hello World