본문 바로가기

C 언어

C 언어 0.07 - bool 자료형

@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;
}