单项选择题

若有以下结构体,则正确的定义或引用的是( )。
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;