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