单项选择题
以下选项中能正确把c1定义成结构体变量的是( )。
A.typedef struct
int red;
int red;
int green;
int blue;
COLOR;
COLOR c1;
B.struct color c1
int red
int red;
int green
int blue;
;
C.stmctcolor
int red,
int green;
int blue;
c1;
D.struct
int red;
int green;
int blue;
c1;
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有以下程序: main() char a='a',b; printf( %c, ,++
A.;
pri
点击查看答案&解析
单项选择题
有以下程序: main() char *S[]= one , two , three ,*p; p=s[1]; printf( %c,%s n , *(p+1), s[0]); 执行后输出结果是( )。
A.n,two
B.t,one
C.w,one
D.o,two
点击查看答案&解析
相关试题
有以下程序: #include <stdlib.h> ...
有以下程序: main() char k; int ...
有以下程序: int *f(int *x, int...
设有如下程序: #include’string.h ma...
(48)~(50)以下程序的功能是:建立...