单项选择题

有以下程序:
main()
unsignedchar a,b;
a= 4|3;
b=4&3;
printf("%d%d\n",a,b);

执行后输出结果是 ______。

A.7 0
B.0 7
C.1 1
D.43 0