第二題:
下列給定程序中,函數(shù)fun的功能是:將字符串p中的所有字符復(fù)制到字符串b中,要求每復(fù)制三個字符之后插入一個空格。例如,在調(diào)用fun函數(shù)之前給字符串a(chǎn)輸入ABCDEFGHIJK,調(diào)用函數(shù)之后,字符串之后,字符串b 中的內(nèi)容則為ABC DEF GHI JK。
請改正程序中的錯誤,使它能得出正確的結(jié)果。
注意:不要改動main函數(shù),不得增行或刪行,也不得更改程序的結(jié)構(gòu)!
#include
void fun(char *p, char *b)
{
int i, k = 0;
while (*p)
{
/********found********/
i = 0;
/********found********/
while (i<3 && *p)
{
b[k] = *p;
k++;
p++;
i++;
}
/********found********/
if (*p)
b[k++] = ' ';
}
b[k] = '\0';
}
main()
{
char a[80], b[80];
printf("Enter a string: ");
gets(a);
printf("The original string: ");
puts(a);
fun(a, b);
printf("\nThe string after insert space: ");
puts(b);
printf("\n\n");
}