fork download
  1. /* Hello World in C, Ansi-style */
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. int main(void)
  6. {
  7. puts("Hello World!");
  8. return EXIT_SUCCESS;
  9. }
  10.  
  11. /*
  12.  #include <stdio.h>
  13.  
  14.  main()
  15.  {
  16.  printf("Hello World");
  17.  
  18.  }*/
  19.  
  20. /*
  21.  #include <stdio.h>
  22.  
  23.  int main() {
  24.  
  25.  printf("Hello, World!");
  26.  
  27.  return 0;
  28.  }*/
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
Hello World!