若有以下程序 #include <stdio.h> main() { int c; c = 13|5; printf("%d\n", c); } 则程序的输出结果是

admin2021-07-09  16

问题 若有以下程序
     #include <stdio.h>
     main()
     {  int c;
        c = 13|5;
        printf("%d\n", c);
     }
则程序的输出结果是

选项 A、13
B、15
C、18
D、5

答案A

解析 本题考查位运算中按位或运算符,或运算只要两个比较的位中有一个为1,其结果是1,否则结果为0,,13用二进制表示为00001101,5用二进制表示为00000101,或后00001101,即13,选项A正确。
转载请注明原文地址:https://kaotiyun.com/show/MZtp777K
0

随机试题
最新回复(0)