若有以下结构体,则正确的定义或引用的是struct Test{int x;int y;} vl;A.Test.x=10;B.Test v2;v2.x=10;C.struct v2;v2.x=10;D.struct Test v2={10};

若有以下结构体,则正确的定义或引用的是

struct Test

{int x;

int y;

} vl;

A.Test.x=10;

B.Test v2;v2.x=10;

C.struct v2;v2.x=10;

D.struct Test v2={10};


相关考题:

若有以下定义int x[10],*pt=x;则对数组元素的正确引用是A)*x[10]B)*(x+3)C)*(pt+10)D)pt+3

下面结构体的定义语句中,错误的是( )。 A.struct ord{int x;int Y;int Z;};struet ord a;SXB 下面结构体的定义语句中,错误的是( )。A.struct ord{int x;int Y;int Z;};struet 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;

若有以下结构体,则正确的定义或引用的是( )。 struct Test { int x; int y; } vl;A.Test.x=10;B.Test v2;v2.x=10;C.struet v2;v2.x=10;D.struct Test v2={10};

若有以下结构体定义,则______是正确的引用或定义。 struct example { int x; int y; }v1;A.example.x=10B.example v2.x=10C.struct v2;v2.x=10D.struct example v2={10};

若有以下结构体定义,则是正确的引用或定义。struct example{ int x; int y;}v1;A.example.x=10B.examplev2.x=10C.struct v2;v2.x=10D.struct example v2={10};

若有以下结构体定义,则_______是正确的引用或定义。 struct example { int x; int y; }v1;A.example.x=10B.example v2.x=10C.struct v2;v2.x=10D.struct example v2={10};

若有以下结构体定义,则______是正确的引用或定义。 struct example { int x; int y; }v1;A.example.x=10B.example v2.x=10C.example.x=10D.struct example v2={10};

若有以下结构体,则正确的定义或引用是( )。 struct Test { int x; int y; }v1;A.Test.x=10;B.Test v2;v2.x=10;C.struct Test v2;v2.x=10;D.struct Test.v2=10;

若有以下结构体定义,则是正确的引用或定义。 Struct example { int x; int y; }V1;A.example.x=10B.example V2.x=10C.structv2;v2x=10D.struct examplev2={10};