fork(2) download
  1. i;f(n){for(i=0;n--;)printf("I %se %s",i++%2?"lov":"hat",n?"that ":"it.");}
  2. j;main(){for(;j<4;){printf("%d: ",++j);f(j);puts("");}}
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
1: I hate it.
2: I hate that I love it.
3: I hate that I love that I hate it.
4: I hate that I love that I hate that I love it.