问题详情
有以下程序 main() {int a=1,b=2,m=0,n=0,k; k=(n=b>a)‖(m=a<b) ; printf("%d,%d ",k,m); } 程序运行后的输出结果是
A、0,0
B、0,1
C、1,0
D、1,1