2.2 基础数据类型-进阶练习

1. 如题,

#include <stdio.h>
int main(void){
    unsigned int a = 6;
    int b = -20;
    (a + b) > 6 ? printf("hehe\n") : printf("hoho\n");
    return 0;
}
此题的输出结果是:"hehe\n"


你可能感兴趣的:(c,C语言)