25

I only found pretty unrelated questions due to the tons of results searching for printf().

Why does uint8_t not specify its own format string but any other type does?

As far as I understand printf(), it has to know the length of the supplied parameters to be able to parse the variable argument list.

Since uint8_t and uint16_t use the same format specifier %u, how does printf() "know" how many bytes to process? Or is there somehow an implicit cast to uint16_t involved when supplying uint8_t?

Maybe I am missing something obvious.

alk
  • 69,737
  • 10
  • 105
  • 255
Rev
  • 5,827
  • 4
  • 27
  • 51
  • @PaulRoub: That question is actually exactly what my questions motivation was about, thanks. I missed using "integer promotions" as search keyword. – Rev Oct 14 '14 at 14:15

2 Answers2

34

Because %u stands for "unsigned", it well may be uint64_t and is architecture dependent. According to man 3 printf, you may want to use length modifier to get sought behaviour, i.e. %hu (uint16_t) and %hhu (uint8_t).

wick
  • 1,995
  • 2
  • 20
  • 31
11

printf() is a variadic function. Its optional arguments( and only those ) get promoted according to default argument promotions( 6.5.2.2. p6 ).

Since you are asking for integers, integer promotions are applied in this case, and types you mention get promoted to int. ( and not unsigned int because C )

If you use "%u" in printf(), and pass it an uint16_t variable, then the function converts that to an int, then to an unsigned int( because you asked for it with %u ) and then prints it.

2501
  • 25,460
  • 4
  • 47
  • 87