单项选择题有以下程序 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); 程序运行后的输出结果是 ( )
单项选择题有以下程序 并include<stdio.h> #include<string.h> fun(char * w,int n) char t,*s1,*s2; s1=w; s2=w+n-1; while(s1<s2) t=*s1++; * s1=*s2--; * s2=t; main() char p[]= 1234567 ; fun(p,strlen(p)); puts(p); 程序运行后的输出结果是 ( )