编写函数,从字符串中将指定的字符全部删除。(要求使用数组和指针)
#include <stdio.h>
#include <string.h>
void delete_char(char s[], char c)
{
//在这里添加函数体
}
int main()
{
char s[100];
char c;
gets(s);
c=getchar();
delete_char(s,c);
printf("%s",s);
return 0;
}
编写函数,从字符串中将指定的字符全部删除。(要求使用数组和指针)
#include <stdio.h>
#include <string.h>
void delete_char(char s[], char c)
{
//在这里添加函数体
}
int main()
{
char s[100];
char c;
gets(s);
c=getchar();
delete_char(s,c);
printf("%s",s);
return 0;
}
输入字符串
输入指定字符
abcdefg
d
abcefg