• 2022-06-06
    以下选项中不能正确把cor定义成结构体变量的是______。
    A: struct{ int red; int green; int blue;} cor;
    B: struct color cor{ int red; int green; int blue;};
    C: struct color{ int red; int green; int blue;} cor;
    D: typedef struct{ int red;int green;int blue;}COLOR;COLOR cor;
  • 举一反三