C语言—bool类型

作者:追风剑情 发布于:2019-7-20 15:16 分类:C

示例

  1. #include <stdio.h>
  2. #include <stdint.h>
  3. //引入bool类型,C99标准新增
  4. #include <stdbool.h>
  5. #include <windows.h>
  6.  
  7. //对于不支持C99的编译器可以通过宏定义bool类型
  8. //#define bool int
  9. //#define true 1
  10. //#define false 0
  11.  
  12. int main(void)
  13. {
  14. bool b = true;
  15. bool b0 = false;
  16. //赋任何非0值,b1都等于1
  17. bool b1 = 0;
  18. bool b2 = -5;
  19. bool b3 = 5;
  20. printf("b=%d, b0=%d b1=%d b2=%d b3=%d\n", b, b0, b1, b2, b3);
  21.  
  22. printf("bool size=%u", sizeof(bool));
  23.  
  24. getchar();
  25. return 0;
  26. }

运行测试

11111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号