这是你打印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;
}
答案 0 :(得分:0)
这应该这样做:
printf("%s", intersect ? "true" : "false");