fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char f11 = 0x85;
  6. unsigned char f12 = 0x86;
  7.  
  8. printf("%x\n", f11);
  9. printf("%x\n", f12);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
ffffff85
86