时间:2021-07-01 10:21:17 帮助过:6人阅读
用于判断,ture为1,false为0
1 #include<stdio.h> 2 #include<stdbool.h> 3 4 main() 5 { 6 _Bool bl = 5 > 3; 7 8 if (bl) 9 { 10 printf("yes\n"); 11 } 12 else 13 { 14 printf("no\n"); 15 } 16 17 getchar(); 18 }
#include <stdbool.h>
标签: