逻辑类型
2020-07-02 本文已影响0人
爱生活_更爱挺自己
逻辑类型
#include<stdbool.h>
之后就可以使用bool和true、false
#include<stdio.h>
#include<stdbool.h>
int main(){
bool b = 6>5;
bool t = true;
printf("%d\n",t);
return 0;
}
#include<stdio.h>
#include<stdbool.h>
int main(){
bool b = 6>5;
bool t = true;
printf("%d\n",t);
return 0;
}