fork download
  1. #include <stdio.h>
  2.  
  3. void printHW(){
  4. printf("Hello");
  5. printf("World");
  6. printf("!!!!!!!!!!!!!\n");
  7. }
  8. int main(void) {
  9. printHW();
  10. printf("-----------------------\n");
  11. printHW();
  12. printf("***********************\n");
  13. printHW();
  14. printHW();
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
HelloWorld!!!!!!!!!!!!!
-----------------------
HelloWorld!!!!!!!!!!!!!
***********************
HelloWorld!!!!!!!!!!!!!
HelloWorld!!!!!!!!!!!!!