例一:
#include "stdio.h" int main() { int i=0; if(i) printf("hi"); if(!i) printf("hi"); return 0; }
c语言中0就是false,就不需要打印里面的语句了。
结果是:hi