fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("Hello World!");
  5. printf ("..Bye..");
  6. printf ("..Bye..\n");
  7. printf ("Hello & again!\n");
  8. //Learn all about c programming
  9. return 0;
  10. }
Success #stdin #stdout 0s 4400KB
stdin
Standard input is empty
stdout
Hello World!..Bye....Bye..
Hello & again!