问答题

下列给定程序中,函数fun的功能是:将形参s所指字符串中的所有字母字符顺序前移,其他字符顺序后移,处理后将新字符串的首地址作为函数值返回。 例如,若S所指字符串为“asdl23fgh543df”,处理后新字符串为“asdfghdf123543”。 请在程序的下画线处填入正确的内容并将下画线删除,使程序得出正确的结果。 注意:部分源程序给出如下。 不得增行或删行,也不得更改程序的结构! 试题程序: #include < stdio.h > #include < stdlib.h > #include < string.h > char * fun(char*s) { int i,j,k,n;char*p,*t; n=str1en(s)+1; t=(char *)malloc(n *sizeof(char)); p=(char*)malloc(n * si一 zeof(char)); j=0;k=0; for(i=0;i < n;i++) {if(((s[i] >=’a’)&&(s[i] < =’z))||((s[i] >=’A’)&&(s[i] < =’Z’))){ /*********found*********/ t[j]= 【1】 ;j++;} else {p[k]=s[i];k++;) } /*********found*********/ for(i=0;i < 【2】 ;i++) t[j+i]=p[i]; /*********found*********/ t[j+k]= 【3】 ; return t; } main() {char s[80]; printf("Please input:"); scanf("%s",s); printf("\nThe result is:% s\n",fun(s)); }

【参考答案】

正确答案:(1)s[i] (2)k (3)’\0’或0
热门 试题