*<stdbool.h>
C์์๋ ์ฐธ๊ณผ ๊ฑฐ์ง์ 0๊ณผ 0์ด ์๋ ๋ค๋ฅธ ์ซ์๋ฅผ ํตํด ํํํ๋ค. (0์ ๊ฑฐ์ง, ๊ทธ๋ฆฌ๊ณ ๊ทธ ์ธ์ ๋ชจ๋ ์ซ์๋ ์ฐธ)
์ด๋ stdbool.h ํค๋ํ์ผ์ ์ฌ์ฉํ๋ฉด True, False๋ฅผ ์ฌ์ฉ ํ ์์๋ค.๊ทธ๋ฆฌ๊ณ bool์ด๋ผ๋ ๋ฐ์ดํฐํ์
๋ ์ฌ์ฉ ๊ฐ๋ฅํ๋ค.
#include <stdio.h>
#include <stdbool.h> // bool, true, false๊ฐ ์ ์๋ ํค๋ ํ์ผ
int main()
{
bool b1 = true;
if (b1 == true)
printf("์ฐธํธ๋ฃจ\n");
else
printf("False\n");
return 0;
}
์ด๋ bool์ size๋ 1byte์ด๋ค.