单选题 有以下程序
#include<stdio.h>
main()
{
int a=1,b=2,c=3,x;
x=(a^b)&c;
printf("%d/n",x);
}
程序的运行结果是______。
【正确答案】 C
【答案解析】[解析] a^b后值为3,3&c值为3,所以选择C。