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

admin2020-06-16  22

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

选项 A、6
B、1
C、0
D、3

答案D

解析 &按位与运算符。a=3=11B,b=3=11B,按位与结果为11B=3,D选项正确。
转载请注明原文地址:https://kaotiyun.com/show/SOCp777K
0

最新回复(0)