单项选择题以下程序的输出结果是______。typedef union{long a[1];int b[3];char c[10];}S;S t;main(){printf( %d n ,sizeof(t));}
单项选择题下述程序执行的输出结果是______。# include<stdio.h>main(){ char a[2][4];strcpy(a, are ); strcpy(a[1], you );a[0][3]= & ;printf( %s n ,a);}