单项选择题

有以下程序:
main()
int i=10,j=1;
printf("%d,%d\n",i--,++j);
执行后的输出结果是 ______。

A.9,2
B.l0,2
C.9,1
D.10,1
<上一题 目录 下一题>
热门 试题

单项选择题
若程序中已包含头文件stdio.h,以下选项中,正确运用指针变量的程序段是 ______。
A.int*i=NULL;
scanf("%d",i);
B.float * f=NULL
*f=19.5;
C.char t='m',*c=&t;
*c=&t;
D.long *L;
L='\0';
单项选择题
设有定义:int n=0,*p=&n,**q=&p;,则以下选项中,正确的赋值语句是 ______。
A.p=1;
B.*q=2
C.q=p
D.*p=5
相关试题
  • 设函数findbig已定义为求3个数中的最大值...
  • 有以下程序: prt(int *m,int n) i...
  • 有以下程序: float f1(float n) re...
  • 设有以下定义和语句: int a[3][2]...
  • 有以下程序: void f(int*x,iht * ...