Boolean Type

C99 boolean data type lists the name, size, and range of the boolean data type. The compiler recognizes this data type when compiling C99 (ISO/IEC 9899-1999) source code.

Table 1. C99 boolean data type
This type has this size and holds this range of values
_Bool 8 bits when pragma uchar_bool is on , 32 bits when pragma uchar_bool is off 0 ("false") and 1 ("true")

Boolean data type lists the name, size, and range of the C++ boolean data type. The C++ compiler does not recognize the C99 _Bool type.

Table 2. Boolean data type
This type has this size and holds this range of values
bool 8 bits when pragma uchar_bool is on , 32 bits when pragma uchar_bool is off true , false