C-bool型

#include <stdio.h>

#include <stdbool.h>

int main(void){

_Bool flag;

flag=true;

printf(flag?"true\n":"false\n");

}

使用c99编译

deepfuture@deepfuture-laptop:~/private/mytest$ gcc -std=c99 -o testbool testbool.c

deepfuture@deepfuture-laptop:~/private/mytest$ ./testbool

true

 

你可能感兴趣的:(C++,c,C#,gcc)