2.2基礎データ型-ステップアップ練習

264 ワード

1.問題のように、
#include <stdio.h>
int main(void){
    unsigned int a = 6;
    int b = -20;
    (a + b) > 6 ? printf("hehe
") : printf("hoho
");     return 0; }
        :"hehe
"