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