单项选择题

有以下程序
main()
unsigned char a,b;
a=4|3;
b=4&3;
printf("%d%d\n",a,b) ;
执行后输出结果是

A.70
B.07
C.11
D.430