C Macro bool true false are defined - sonkoni/Koni-Wiki GitHub Wiki
๋ถ ์ ์ ํ์ธ ๋งคํฌ๋ก. stdbool.h ๋ฅผ ๋ฐ์์ผ๋ฉด ํญ์ 1์ด๋ค.
#define __bool_true_false_are_defined 1#include <stdio.h>
#include <stdbool.h>
int main(int argc, char *argv[]) {
#if __bool_true_false_are_defined == 1
printf("sizeof(bool): %zu\n", sizeof(bool));
#endif
return 0;
}
// sizeof(bool): 1