fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int i=0;
  6. i++;
  7. if(i<=5)
  8. {
  9. printf("c adds wings to your thoughts\n");
  10. exit(0);
  11. main();
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
c adds wings to your thoughts