单项选择题
以下选项中非法的表达式是( )。
A.0<=x<100
B.i=j= =0
C.(char)(65+3)
D.x+1=x+1
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有定义:int x,y;若要通过scanf( %d,%d ,&x,&y);使变量x得到数值11,变量y得到数值12,下面四组输入形式中,错误的是( )。
A.11 12<回车>
B.11,12<回车>
C.11, 12<回车>
D.11,<回车>12<回车>
点击查看答案&解析
单项选择题
以下选项中不能正确把cl定义成结构体变量的是( )。
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;
点击查看答案&解析
相关试题
以下程序的功能是计算:。 #include <s...
有以下结构体说明和变量定义,如下图所示,...
以下程序中函数scmp的功能是返回形参指针s...
在下列选项中,不是一个算法一般应该具有的...
有以下程序: #include <stdio.h> ...