fork download
  1. #include <stdio.h>
  2.  
  3. int main(int argc, char *argv[]) {
  4. printf("%2hhX\n", 250);
  5. char c[80];
  6. snprintf(c, sizeof(c), "%2hhX", 250);
  7. printf("%s\n", c);
  8. return 0;
  9. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
FA
FA