单项选择题
以下选项中不能正确把c1定义成结构体变量的是
A.typedef struct
int red:
int green:
int blue;
COLOR;
COLOR c1;
B.struct color c1
int red
int green:
int blue;
;
C.struct color
int red ,
int green :
int blue :
)cl;
D.struct
int red;
int green;
int blue
c1 ;
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
若x和y代表整型数,以下表达式中不能正确表示数学关系|x-y|<10的是
A.abs(x-y)<10
B.x-y>-10&&x-y<10
C.!(x-y)<=10||!(y-x)>10
D.(x-y)*(x-y)<100
点击查看答案&解析
相关试题
以下程序中函数reverse 的功能是将a所指数...
有以下程序main ( ) int num[4] ...
若以下定义:struct link int data; s...
有以下等程序#include <string. h>vo...
若定义:int a=511,*b=&a;则prin...