有以下程序: #include<stdio.h>main(  )

有以下程序: #include<stdio.h>main(  ){  int a=-2,b=0;  while(a++&&++b);  printf(%d,%d,a,b); }程序运行后的输出结果是(  )。

问题:

[单选] 有以下程序:
#include<stdio.h>
main(  )
{  int a=-2,b=0;
 while(a++&&++b);
 printf("%d,%d",a,b);
}
程序运行后的输出结果是(  )。

A . 1,3
B . 0,2
C . 0,3
D . 1,2

参考答案:D

参考解析:

输出的结果是:-1,1
0,2
1,2

联系我们

联系我们

查看联系方式

邮箱: 2643773075@qq.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部