fork(10) download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char input = 0xD1;
  5. int output = (unsigned char)input & 0xFF;
  6. printf("%X\n", output);
  7.  
  8. return 0;
  9. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
D1