There are new format specifiers for intN_t
types, for example %"PRIiN"
and %"SCNiN"
, for printf
and scanf
families of functions.
What are, if any, the new format specifiers for float_t
and double_t
? (defined in math.h
)
Can I -safely- use %f
and %lf
? I don't think so, because float_t
is only at least as large as float
, but could be defined as long double
.
As nobody answered, and I don't find the answer anywhere, may it be a bug in C?