Does C have booleans?

In C99, we have the header stdbool.h. The important contents are:

#define bool _Bool
#define true 1
#define false 0

The true and false are simple, but what is this _Bool? It’s a reserved keyword, and a type much like int, etc.

More by Jim

Tagged . All content copyright James Fisher 2016. This post is not associated with my employer. Found an error? Edit this page.