在C語言中,沒有內置的bool類型。然而,C99標準引入了stdbool.h頭文件,其中定義了_Bool類型,以及true和false的宏定義。可以通過包含stdbool.h頭文件來使用bool類型。具體示例代碼如下:
#include <stdbool.h>
#include <stdio.h>
int main() {
bool b = true;
if (b) {
printf("b is true\n");
} else {
printf("b is false\n");
}
return 0;
}
上述代碼中,我們包含了stdbool.h頭文件,并使用了bool類型的變量b,以及true和false的宏定義。在條件語句中,我們判斷b的值并輸出相應的結果。