c语言的布尔量

 1 #include <stdio.h>
 2 #include <stdbool.h>
 3 
 4 int main()
 5 {
 6     
 7     bool b = true;
 8     bool t = false;
 9 
10 
11     return 0;
12 }
原文地址:https://www.cnblogs.com/2018jason/p/11023678.html