有以下程序: #include main() { int x=0x13: if(x=0x12)printf("True"); printf("False\n"); } 程

admin2021-02-25  24

问题 有以下程序:   
    #include   
    main()
    {
    int x=0x13:  
    if(x=0x12)printf("True");   
    printf("False\n");
    }
    程序运行后的输出结果是(    )。

选项 A、True
B、TrueFalse
C、False
D、TrueFalseTrue

答案B

解析 if(x=0x12)条件语句为赋值语句,注意赋值操作符“=”与相等操作符 “==”的区别,条件成立,输出True;退出条件语句,输出False。
转载请注明原文地址:https://jikaoti.com/ti/d6z0FFFM
0

随机试题
最新回复(0)