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