有以下程序: #include<stdio.h> main() {int a=2,b; b=a<<2; printf("%d\n",b); } 程序运行后的输出结果是( )。

admin2020-06-16  34

问题 有以下程序:
#include<stdio.h>
main()
{int a=2,b;
b=a<<2;
printf("%d\n",b);
}
程序运行后的输出结果是(    )。

选项 A、2
B、4
C、6
D、8

答案D

解析 本题考查位运算符,题目中将a向左移两位,左移两位表示乘以4,所以答案为8,选项D正确。
转载请注明原文地址:https://kaotiyun.com/show/h7Cp777K
0

相关试题推荐
最新回复(0)