Since ANSI C99 there is _Bool or bool via stdbool.h. But is there also a printf format specifier for bool?
_Bool
bool
stdbool.h
printf
I mean
I prefer an answer from Best way to print the result of a bool as 'false' or 'true' in c?, just like
printf("%s\n", "false\0true"+6*x);