单项选择题以下程序输出的结果是 #include<stdio.h> #include<string.h> main() charw[][10]= ABCD , EFGH , IJKL , MNOP 1,k; for(k=1;k<3;k++) printf( %s n ,&w[k][k]);
单项选择题下面程序的运行结果是 #include<stdio.h> main() int a=28,b; char s[10],*p; p=s; dob=a%16; if(b<10) *p=b+48; else*p=b+55; p++;a=a 5;while(a>0); *p=' 0';puts(s);