-->
当前位置:首页 > 题库 > 正文内容

多选题:以下选项中能把cl定义成结构体变量的是

Luz3年前 (2022-04-01)题库1373
以下选项中能把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
{
int red;
int green;
int blue;
} cl;

D.
struct color
{
int red;
int green;
int blue;
} cl;

E.
typedef struct color
{
int red;
int green;
int blue;
} cl;



答案:A C D

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。