show/hide this revision's text 2 Default agument promotion applies.

The x format specifier by itself says that the argument is an int, and since the number is negative, printf requires eight characters to show all four non-zero bytes of the int-sized value. The 0 modifier tells to pad the output with zeros, and the 2 modifier says that the minimum output should be two characters long. As far as I can tell, printf doesn't provide a way to specify a maximum width, except for strings.

Now then, you're only passing a char, so bare x will lead to undefined behavior tells the function expects an to use the full int but that's not what's there that got passed instead due to default argument promotion for "..." parameters. Try the hh modifier to tell the size of function to treat the argument as just a char instead:

printf("%02hhx", b[i]);
show/hide this revision's text 1

The x format specifier by itself says that the argument is an int, and since the number is negative, printf requires eight characters to show all four non-zero bytes of the int-sized value. The 0 modifier tells to pad the output with zeros, and the 2 modifier says that the minimum output should be two characters long. As far as I can tell, printf doesn't provide a way to specify a maximum width, except for strings.

Now then, you're only passing a char, so bare x will lead to undefined behavior — the function expects an int but that's not what's there. Try the hh modifier to tell the size of the argument:

printf("%02hhx", b[i]);