c语言printf bool类型
时间: 2023-10-24 10:14:14 浏览: 249
C语言中printf格式
C语言并不支持bool类型,但可以使用stdbool.h头文件中定义的bool类型。在使用bool类型时,需要在代码中包含stdbool.h头文件,并使用true和false来表示真和假。printf函数可以使用"%d"格式控制符来输出bool类型的值,其中true会被输出为1,false会被输出为0。例如:
```
#include <stdio.h>
#include <stdbool.h>
int main() {
bool result = true;
printf("The result is %d\n", result);
return 0;
}
```
输出结果为:
```
The result is 1
```
阅读全文