单项选择题
数字字符 0 的 ASCII 值为 48,若有以下程序 main() { char a=''1'',b=''2 ''; printf("%c,",b++); printf("%d\n",b-a); } 程序运行后的输出结果是______。
A. 3,2
B.50,2
C.2,2
D.2,50
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
设有如下关系表 则下列操作中,正确的是______。
A.T=R∩S
B.T=R∪S
C.T=RхS
D.T=R/S
点击查看答案&解析
单项选择题
以下选项中不能正确把c1定义成结构体变量的是( )。
A.typedef struct { int red; int green; int blue; } COLOR; COLOR cl;
B.struct color cl { int red; int green; int blue; }
C.struct color { int red; int green; int blue; } cl;
D.struct { int red; int green; int blue; } cl;
点击查看答案
相关试题
有以下程序:void swap1(int c[ ])...
下面程序的功能是输出以下形式的金字塔图案...
有以下程序:void swap1(int c0[],...
有以下程序:int f(int b[ ][4])...
以下程序中函数scmp的功能是返回形参指针s...