单项选择题

有以下程序
union myun
struct
int x,y,z;u;
int k;
a;
main()
a.u.x=4;a.u.y=5;a,u.z=6;
a.k=0;
printf("%d\n",a.u.x);
程序运行后的输出结果是 ( )

A.4
B.5
C.6
D.0