单项选择题

若有以下结构体,则正确的定义或引用是
struct Test
int x;
int y:
v1;

A.Test.x=10;
B.Test v2;v2.x=10;
C.struct v2;v2.x=10;
D.struct Test v2=10;