赞题库-背景图
单项选择题

数字字符 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;