我在C std99中使用bool数据类型,其定义在<stdbool.h>
中定义。现在我希望用户给我输入。我必须在scanf中使用什么格式说明符来从用户输入1字节的布尔值,然后在我的程序中对其进行操作。
答案 0 :(得分:19)
没有。
使用临时对象,因为_Bool
的大小取决于实现。
#include <stdbool.h>
#include <stdio.h>
bool b;
int temp;
scanf("%d", &temp);
b = temp;
答案 1 :(得分:3)
C中bool
没有特殊类型.C true
或false
由整数值1 and 0
表示。因此格式说明符为%d
。
stackoverflow中还有另一个关于C boolean的讨论。 Here it is