单项选择题

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

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