fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("Hello, World!");
  5. printf("Goodbye");
  6. printf("Goodbye \n");
  7. printf("Hello, again! \n");
  8. printf("My name is Akrem! \n");
  9. printf("I like playing Soccer. \n");
  10. return 0;
  11. }
Success #stdin #stdout 0s 10304KB
stdin
Standard input is empty
stdout
Hello, World!GoodbyeGoodbye 
Hello, again! 
My name is Akrem! 
I like playing Soccer.