fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int i = 5;
  5. while(i-- >= 0)
  6. printf("%d,", i);
  7. i = 5;
  8. printf("\n");
  9. while(i-- >= 0)
  10. printf("%i,", i);
  11. while(i-- >= 0)
  12. printf("%d,", i);
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5404KB
stdin
Standard input is empty
stdout
4,3,2,1,0,-1,
4,3,2,1,0,-1,