码迷,mamicode.com
首页 > 编程语言 > 详细

C 语言boolean 值判断

时间:2018-12-28 20:45:56      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:href   笔记   hid   col   osi   z-index   none   ber   tab   

printf("%d\n", !0);
1
 
1
printf("%d\n", !0);
技术分享图片
#include <stdio.h>
int main(){
    int x=23;
    do{
        printf("%d",x--);
    }while(!x);
}
 
1
#include <stdio.h>
2
int main(){
3
    int x=23;
4
    do{
5
        printf("%d",x--);
6
    }while(!x);
7
}




C 语言boolean 值判断

标签:href   笔记   hid   col   osi   z-index   none   ber   tab   

原文地址:https://www.cnblogs.com/mlh1421/p/a07c0e95b32f4f2872863b2108cd0423.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!