fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. unsigned char c = 42;
  6. unsigned char i = 0;
  7.  
  8. while (++i)
  9. {
  10. ++c;
  11. }
  12.  
  13. printf("c = %u\n", c);
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
c = 41