以下程序的运行结果是voidfun(char*p){char*q=p;while...);printf("%s",st);}
举一反三
- 以下程序的运行结果是 ___ char *p="tomorrow"; p=p+2; printf("%s",p);
- 下面程序的运行结果为____。void main(){ char *p,*q;char str[]="Hello,World\n";q=p=str; p++;printf("%s\n",q);printf("%s\n",p); }
- 有以下程序 #include "stdio.h" main() { char *p,*q; p=(char *)malloc(sizeof(char)*20); q=p; scanf("%s%s",p,q); printf("%s%s ",p,q); } 若从键盘输入:abc def<回车>,则输出结果是
- 有以下程序voidfun(char*t,char*s){while(*t!=0)...,ss,aa);}程序的运行结果是().
- 以下程序的运行结果是______。 #include main() { staticcharc[]='china'; char*p=c; while(*p) printf('%c',*p++-32); printf(' '); }