if_else选择结构语句只对表达式进行两种结果的判断,真或者假,
if语句只判断真假,0为假,非0为真
int a=0;
if(!a){
printf("hehhehehhe\n");
}
输出“hehhehehehehe”
int a=-1;
if(!a){
printf("hehhehehhe\n");
}
不输出
if_else选择结构语句只对表达式进行两种结果的判断,真或者假,
if语句只判断真假,0为假,非0为真
int a=0;
if(!a){
printf("hehhehehhe\n");
}
输出“hehhehehehehe”
int a=-1;
if(!a){
printf("hehhehehhe\n");
}
不输出