单项选择题

有以下程序:
#include<stdio.h>
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