有以下程序
main( )
{ unsigned char a=2,b=4,c=5,d;
d=a|b; d&=c; printf("%d\n",d); }
程序运行后的输出结果是
A)3
B)4
C)5
D)6