单项选择题
有以下程序:
#include <stdio.h>
main()
int x=011;
printf("%d\n",++x);
程序运行后输出的结果是( )。
A.12
B.11
C.10
D.9
点击查看答案
<上一题
目录
下一题>
热门
试题
单项选择题
若有定义语句:double x,y,*px,*py;,执行了px=&x;py=&y;之后,正确的输入语句是( )。
A.scanf("%f%1",x,y);
B.scanf("%f%f",&x,&y);
C.scanf("%1f%1e",px,py);
D.scanf("%1f%1f",x,y);
点击查看答案
单项选择题
下列运算符在C语言中优先级最低的是( )。
A.++
B.1
C.:
D.=
点击查看答案
相关试题
以下程序输出正确的是( )。 void amov...
有以下程序: #include <stdio.h> ...
有以下程序: #include <stdio.h> i...
有以下程序: #include <stdio.h> i...
若有以下说明和定义: union dt int a...