@Required
#include <stdbool.h> // bool, true, false가 정의된 헤더 파일
[ 소스 코드 ]
#include <stdio.h>
#include <stdbool.h> // bool, true, false가 정의된 헤더 파일
int main()
{
bool b1 = true;
if (b1 == true) // b1이 true인지 검사
printf("참\n"); // b1이 true이므로 참이 출력됨
else
printf("거짓\n");
return 0;
}
'C 언어' 카테고리의 다른 글
C언어 0.09 - 문자열 배열과 포인터 배열 (0) | 2021.11.05 |
---|---|
C언어 0.08 - 동적할당 (0) | 2021.10.30 |
C 언어 0.05 - 포인터 ( pointer ) (0) | 2021.10.30 |
C 언어 0.04 - 배열 ( array ) (0) | 2021.10.30 |
C 언어 0.03 - 문자열 ( string ) (0) | 2021.10.27 |