fork download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3.  
  4. int main(void) {
  5. int32_t x = -5;
  6. printf("%08x\n", x);
  7. int64_t y = (int64_t) x;
  8. printf("%16x\n", y);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
fffffffb
        fffffffb