有如下程序:
#include<stdio.h>
main()
{
unsigned char a=8,c;
c=a>>3;
printf("%d\n",c);
}
程序运行后的输出成果是( )
32
16
1
0