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.

Tagged #c, #programming.

Similar posts

More by Jim

👋 I'm Jim, a full-stack product engineer. Want to build an amazing product and a profitable business? Read more about me or Get in touch!

This page copyright James Fisher 2016. Content is not associated with my employer. Found an error? Edit this page.