以下选项中不能正确把c1定义成结构体变量的是

admin2009-04-15  39

问题 以下选项中不能正确把c1定义成结构体变量的是

选项 A、typedef struct      { int red;           int green;;       int blue;         }COLOR;         COLOR cl;
B、struct color cl     { int red;         int green;        int blue;           };
C、struet color       { int red;       int green;       int blue;        }c1;
D、struct      { int red;     int green;      int blue;      }cl;

答案2

解析 结构体类型的定义格式为:
   stract结构体名
   成员说明列表};
   结构体变量的定义有3种形式:第一种,定义结构体类型的同时定义结构体变量,如: street结构体名{成员说明列表}变量;第二种,先定义一个结构体类型,然后使用该类型来定义结构体变量,如:strect student{成员说明列表};student变量;第三种,定义一个无名称的结构体类型的同时定义结构体变量,如:strect student{成员说明列表}变量;。
转载请注明原文地址:https://kaotiyun.com/show/27Xp777K
0

最新回复(0)