Namespaces
Variants

Standard library header <stdbool.h> (C99) (deprecated in C23)

From cppreference.net

이 헤더는 boolean type 에 대한 매크로를 제공합니다.

매크로

bool
(C99) (C23에서 제거됨)
편의 매크로, _Bool 로 확장됨
(키워드 매크로)

매크로 상수

true
(C99) (C23에서 제거됨)
정수 상수 1 로 확장됨
(매크로 상수)
false
(C99) (C23에서 제거됨)
정수 상수 0 로 확장됨
(매크로 상수)
__bool_true_false_are_defined
(C99) (C23에서 사용 중단됨)
정수 상수 1 로 확장됨
(매크로 상수)

시놉시스

#if __STDC_VERSION__ < 202311l
#define bool _Bool
#define true 1
#define false 0
#endif
#define __bool_true_false_are_defined 1