fork download
  1. // Simple C program to display "Hello World"
  2. // Header file for input output functions
  3. #include <stdio.h>
  4.  
  5. // main function -
  6. // where the execution of program begins
  7.  
  8. int main() {
  9.  
  10. // prints hello world
  11. printf ("Hello World");
  12.  
  13. return 0;
  14.  
  15. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
Hello World