fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char i = 0x80;
  5. printf("0x%x", i & 0xFF); // this prints 80
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
0x80