单项选择题
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;