전공부셔/c
bool
m-inz
2023. 2. 26. 15:50
#include <stdio.h>
#include <stdbool.h>
int main() {
bool b1 = true;
if(b1==true){
printf("참\n");
}
bool b2 = false;
if(b2==false){
printf("거짓\n");
}
return 0;
}
bool -> true, false