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
In the tradition of itoa():
itoa()
#define btoa(x) ((x)?"true":"false") bool x = true; printf("%s\n", btoa(x));