#include "stdio.h"
void main( )
{ char str[80];
scanf("%s",str);
insert(str);
}
insert(char s[])
{
int i;
for(i=strlen(s);i>0;i--)
{ s[2*i]=s[i];
s[2*i-1]=‘ ‘;
}
printf("%s",s);
}
如果输入的字符串是abcd, 则程序的运行结果是 ( ) 。
A a b c d
Ba c b d
Ca b c d
Dd c b a
相关试题
-
insert(char s[]) { int i; for(i=strlen(s);i>0;i--) { s[2*i]=s[i]; s[2*i-1
-
#include void main() { char str[]=\stop!\,he said; printf(str); } 程序的运行结果是 (
-
以下程序 #include stdio.h #include string.h void main( ) { char str[100] =How do you do; strcpy( str +
-
程序 #include # include char *fun(char *t) { char *p=t; return(p+strlen(t)/2); } void main() { char
-
程序的功能是:从键盘上输入一行字符,存入一个字符数组中,然后输出该字符串,请填空。#include void main() {char str[81],*sptr; ?int i; ?for(i=0