C编程打印bool

时间:2014-10-15 02:29:24

标签: c

这是你打印bool的方法。一个值设置为true,一个设置为false。不知道为什么之前不打印。

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

int main(void) {

    bool intersect = true;
    bool intersect1 = false;
    printf(" Intersection is %d \n", intersect);
    printf(" Intersection1 is %d \n", intersect1);
    return 0;
}

1 个答案:

答案 0 :(得分:0)

这应该这样做:

printf("%s", intersect ? "true" : "false");