I've included `<stdbool.h>` but the following code produces an error for `_Bool`. ``` _Bool a = true; ``` `<stdbool.h>` makes the following defines: ``` #define bool _Bool #define true 1 #define false 0 ``` `bool b = false;` should also work without error.
I've included
<stdbool.h>but the following code produces an error for_Bool.<stdbool.h>makes the following defines:bool b = false;should also work without error.