Boolean expression

Expression which produce a Boolean value when evaluated. Used in many programming languages as built-in type.

In C you need to include stdbool.h to use bool type.

#include <stdbool.h>
printf("true: %d\n", true); // true: 1
printf("false: %d\n", false); // false: 0