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

admin2019-07-10  17

问题 有以下程序:
#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/74ID777K
0

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