fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. unsigned char i=241;
  5. while(i<10 || i>240) printf("i=%hd\n",i++);
  6.  
  7. i=257;
  8. printf("i257=%hd\n",i++);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
i=241
i=242
i=243
i=244
i=245
i=246
i=247
i=248
i=249
i=250
i=251
i=252
i=253
i=254
i=255
i=0
i=1
i=2
i=3
i=4
i=5
i=6
i=7
i=8
i=9
i257=1