问题详情

答题翼 > 问答 > 计算机类考试 > 正文
目录: 标题| 题干| 答案| 搜索| 相关

以下程序的功能是进行位运算 main() {unsigned char a,b; a=7^3;b=~4&3; printf("%d%d\n",a,


以下程序的功能是进行位运算

main()

{ unsigned char a,b;

a=7^3;b=~4&3;

printf("%d%d\n",a,b);}

程序运行后的输出结果是

A.4 3

B.7 3

C.7 0

D.4 0

参考答案
您可能感兴趣的试题