fork(1) download
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. signed char c = 0xff;
  5. printf("%02x\n", c);
  6. unsigned char uc = 0xff;
  7. printf("%02x\n", uc);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
ffffffff
ff