/*
*Copyright (c) 2014, 烟台大学计算机学院
*All rights reserved.
*文件名称:test.cpp
*作者:陈栋梁
*完成日期:2014年 12月 16 日
*版本号:v1.0
*
*问题描述:
*/
#include <iostream>
char *adelchar(char str[],const char c);
using namespace std;
int main()
{
char s[50]="Hello world Good morning vegetable bird!";
cout<< adelchar(s,' ') << endl;
return 0;
}
char *adelchar(char s[],const char c)
{
int i=0;
while(s[i]!='\0')
{
if(s[i]==c)
{
for(int n=i; s[n]!='\0'; ++n)
s[n]=s[n+1];
}
++i;
}
return s;
}
运行结果: