// 请计算, 12 ^ 3 && 12 & 3 的结果 【提示】考虑运算符优先级
#include <stdio.h>
int main()
{
printf("12 ^ 3 && 12 & 3 的结果为: %d\n", 12 ^ 3 && 12 & 3);
return 0;
}