以下选项中不能正确把cl定义成结构体变量的是
发布时间:2024-07-09
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;
试卷相关题目
- 1以下不能正确定义二维数组的选项是
A.int a[2][2]={{1},{2}};
B.int a[][2]={1,2,3,4};
C.int a[2][2]={{1},2,3};
D.int a[2][]={{1,2},{3,4}};
开始考试点击查看答案 - 2已定义c为字符型变量,则下列语句中正确的是
A.c='97';
B.c="97";
C.c=97;
D.c="a";
开始考试点击查看答案 - 3有以下程序#include <stdio.h>main(){ printf("%dn",NULL); }程序运行后的输出结果是
A.0
B.1
C.-1
D.NULL没定义,出错
开始考试点击查看答案 - 4若程序中已包含头文件stdio.h,以下选项中,正确运用指针变量的程序段是
A.int *i=NULL;scanf("%d",i);
B.float *f=NULL;*f=10.5;
C.char t='m', *c=&t;
D.long *L; *c=&t;L='