我在C std99中使用bool数据类型,其定义定义在< stdbool.h> ;.现在我想让用户给我输入.我在scanf中必须使用什么格式说明符,从用户输入1个字节的布尔值,然后在我的程序中操作它.
解决方法
没有.
使用temp对象作为_Bool的大小是依赖于实现的.
#include <stdbool.h> #include <stdio.h> bool b; int temp; scanf("%d",&temp); b = temp;