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

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;
出自:兰州交通大学-C语言成语涉及