单选题 有以下程序
#include<stdio.h>
main()
{ int i=1;
i=i^i;
printf("%d/n", i);
}
程序运行后的输出结果是______。
【正确答案】 D
【答案解析】[解析] ^是按位异或,1^1结果为0,答案选择D。