填空题 下面程序段的运行结果是______。 main() { char a=2,b=3,c=5,d,e; d=a-b|c; e=a-b||c; printf("%d,%d",d,e); }
  • 1、
【正确答案】 1、-1,1    
【答案解析】