fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char a = 0xAA;
  5. int b;
  6. b = (int) a;
  7. printf("%d\n", a);
  8. b = b >> 4;
  9. printf("%x", b);
  10. return 0;
  11. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
-86
fffffffa