若有以下结构体定义,则正确的引用或定义是(           )。struct exam{ int x; int y; }; A.

exam.x=10; B.

exam y,x; C.

struct exam y=[10]; D.

struct exam a; 
a.x=10;