单选题 以下选项中不能正确把cl定义成结构体变量的是(    )。
   (A)typedef  struct    
   { int red;    
     intgreen;    
     int blue;    
   )COLOR;  
   COLOR cl:
   (B)struct color cl
     {int red;
      intgreen;
      int blue;
    };
   (C)stmct color    
   {int red;    
    int green;    
    int blue;    
   }cl;
   (D)struct
   {int red;
    int green;
    int blue;
   }cl;
【正确答案】 B
【答案解析】