通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
下面程序的输出结果是( )。
typedef union { long x[1]; int y[4]; char z[10]; }M; M t; main() { rintf("%d\n",sizeof(t)); }