单项选择题

若整型数据占两个字节,则以下程序的输出结果是( )
main()
int a=2,b=4;
printf("%d,%d\n",a<<1,a%b);

A.1,2
B.2,2
C.4,0
D.4,2