相关疑难解决方法(0)

C中_Bool和bool类型的区别?

任何人都可以解释一下C中的_Bool和bool数据类型有什么区别?例如

 _Bool x = 1;
  bool y = true;

  printf("%d", x);
  printf("%d", y);
Run Code Online (Sandbox Code Playgroud)

c

54
推荐指数
2
解决办法
4万
查看次数

标签 统计

c ×1