有以下程序
#include
# include
char *fun(char *t)
{
char *p=t;
return(p+strlen(t)/2);
}
void main()
{
char *str="abcdefgh";
str=fun(str);
puts(str);
}
执行后的输出结果是( )。
Aefgh
Babcd
Cbcde
Dmain函数必须出现在固定位置
相关试题
-
有以下程序 #include # include char *fun(char *t) { char *p=t; return(p+strlen(t)/2); } void main() {
-
有以下程序 #include stdio.h #include string.h void main( ) { char str[100] =How do you do; strcpy( str +
-
#include void main() { char str[]=\stop!\,he said; printf(str); } 程序的运行结果是 (
-
#include stdio.h void main( ) { char str[80]; scanf(%s,str); insert(str);
-
程序的输出结果是()。 #include #include main() { char *p1=abc,*p2=ABC,str[50]= xyz; strcpy(str+2,strcat(p1,p2)