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