在C语言中,没有内置的bool类型。然而,C99标准引入了stdbool.h头文件,其中定义了_Bool类型,以及true和false的宏定义。可以通过包含stdbool.h头文件来使用bool类型。具体示例代码如下:
#include <stdbool.h>
#include <stdio.h>
int main() {
bool b = true;
if (b) {
printf("b is true\n");
} else {
printf("b is false\n");
}
return 0;
}
上述代码中,我们包含了stdbool.h头文件,并使用了bool类型的变量b,以及true和false的宏定义。在条件语句中,我们判断b的值并输出相应的结果。