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. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:9:2: error: expected ‘;’ before ‘printf’
  printf("I like playing Soccer. \n")
  ^~~~~~
stdout
Standard output is empty