fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int x=1, y=1;
  5. for(; y; )
  6. {
  7. printf("%d%d", x, y);
  8. y = x++ < 2;
  9. }
  10. return 0;
  11. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
1121