单选题 有以下程序
#include<stdio.h>
main()
{
char a=4;
printf("%d/n",a=a<<1);
}
程序的运行结果是______。
【正确答案】 C
【答案解析】[解析] 4左移1位,相当于*2则值为8。答案选择C。