fork(1) download
  1. // My first C program
  2.  
  3. #include <stdio.h>
  4. int main()
  5. {
  6. printf("Hello, World!\n"); // displays Hello, World! on the screen
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
Hello, World!