侃侃无极
请在DaniWeb上的此相关线程上检查出答案。此处提取并引用以方便参考:在c99中使用新关键字_Bool:C99的布尔类型。仅当您要维护已为bool,true或false定义宏的旧代码时,才建议直接使用_Bool。否则,这些宏将在<stdbool.h> 标头中标准化。包含该标头,就可以像在C ++中一样使用bool。#include <stdio.h>#include <stdbool.h>int main ( void ){ bool b = true; if ( b ) printf ( "Yes\n" ); else printf ( "No\n" ); return 0;}