fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. short a = -10;
  5. unsigned short b = 65526;
  6.  
  7. printf("a = %d, %08x\n", a, a);
  8. printf("b = %u, %08x\n", b, b);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
a = -10, fffffff6
b = 65526, 0000fff6