• 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;
  • B

    内容

    • 0

      以下结构体的定义语句中,错误的是_____ A: struct ord{ int x; int y; int z;};struct ord a; B: struct ord{ int x; int y; int z;}struct ord a; C: struct ord{ int x; int y; int z;}a; D: struct{ int x; int y; int z;}a;

    • 1

      ‌下面结构体的定义语句中,正确的是( )​ A: struct { int x; int y; int z;}ord;struct ord a; B: struct { int x; int y; int z;}ord;ord a; C: struct ord{ int x; int y; int z;};struct ord a; D: struct { int x, int y, int z;}a;

    • 2

      下面span标签中HelloWorld字体的颜色是:()span{color:green;}.red{color:red;}#blue{color:blue;}HelloWorld A: green B: red C: blue D: black

    • 3

      下面是关于结构类型与变量的定义语句,错误的是________。 A: struct test{int a; int b; int c;}; struct test y; B: struct test{ int a; int b; int c;} struct test y; C: struct test{ int a; int b; int c;} y; D: struct { int a; int b; int c;} y;

    • 4

      下列对结构体类型变量定义不正确的是( ) A: struct teacher { int num; int age; }teach1; B: struct { int num; int age; }teach1,teach2; C: struct { int num; int age; }teacher; struct teacher teach1; D: struct teacher { int num; int age; }; struct teacher teach1;