#include <stdio.h>
main()
{ unsigned char a=8,c;
c=a>>3;
printf("%d/n",c);
}
程序运行后的输出结果是
A.)32
B.)16
C.)1
D.)0