#include <stdio.h>
#include <stdbool.h>//该头文件提供了bool宏来代替_Bool,还提供了true和false代替1和0
int main(void) {
bool flg;
flg = true;
printf("%d\n",flg);
flg = false;
printf("%d\n",flg);
return 0;
}
原文:https://www.cnblogs.com/tigerlion/p/11191391.html