注意:此页面搜索的是所有试题
若有以下结构体,则正确的定义或引用的是( )。

struct Test

{ int x;

int y;

} vl;





得分/总分

A.


Test v2;

v2.x=10;





2.00/2.00

B.
struct Test v2={10};


C.
struct v2;

v2.x=10;




D.
Test.x=10;

参考答案