fork download
  1.  
  2. #include <stdio.h>
  3.  
  4. int main() {
  5. // printf() is used to display output on the console
  6. printf("Hello, World!\n");
  7.  
  8. // return 0 indicates successful program execution
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5296KB
stdin
Standard input is empty
stdout
Hello, World!