C语言没有bool类型

处理方式1:

​ 导入头文件 #include

处理方式2:

​ 自己定义

#ifndef __cplusplus
 
typedef char bool;
#define false 0
#define true  1
 
#endif

你可能感兴趣的:(C语言没有bool类型)