1 2 3 4 5 6 7 8 9 10
#include <stdint.h> #include <sys/types.h> #include <stdio.h> int main() { u_int8_t a = 27; printf("%02X\n", a); }