问题详情
以下程序的功能是进行位运算: main() {unsigned char a,b; a=7^3;b=~4&3; printf("%d%d ",a,B); } 程序运行后的输出结果是()。
A.4 3
B.7 3
C.7 0
D.4 0