前端之家收集整理的这篇文章主要介绍了
在C中格式化指定符在scanf for bool数据类型,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在C std99中使用bool数据类型,其定义定义在< stdbool.h> ;.现在我想让
用户给我输入.我在scanf中必须使用什么格式说明符,从
用户输入1个字节的布尔值,然后在我的程序中操作它.
没有.
使用temp对象作为_Bool的大小是依赖于实现的.
#include <stdbool.h>
#include <stdio.h>
bool b;
int temp;
scanf("%d",&temp);
b = temp;
原文链接:https://www.f2er.com/c/112224.html