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
You can't, but you can print 0 or 1
_Bool b = 1; printf("%d\n", b);
source