例如,若字符串中的内容为****A*BC*DEF*G*******,删除后,字符串中的内容则应当是A*BC*DEF*G*******。
注意:部分源程序给出如下。
请勿改动主函数main 和其他函数中的任何内容,仅在函数fun 的花括号中填入所编写的若干语句。
试题程序;
include <stdio. h>
include <conio. h>
void fun (char *a)
{
}
main()
{
char s[81];
printf("Enter a string :/n");
gets (s);
fun (s);
printf ("The string after deleted: /n");
puts (s);
}