头部加入
#include <stdbool.h>
之后就可以使用bool和true,false

#include <stdio.h>
#include <stdbool.h>

int main() {
    bool b = 6 > 5;
    bool t = true;
    printf("%d",b);
    return 0;
}

image-1657349589599