本题要求实现一个函数,字符串由字符和 * 号组成,要求删除字符串中所有的 * 号。如 abCDd*ef**,则函数执行结果为abCDdef。
void del_star ( char x[] );
其中 x
是用户传入的参数。
#include
***ab*CDd***ef**
abCDdef
- void del_star ( char x[] )
- {int i,j=0;
- for(i=0;x[i]!='\0';i++)
- {
- if(x[i]!='*')
- x[j++]=x[i];
- }
- x[j]='\0';}