[求助]简单的去字母程序~
我需要做一个简单的程序,让用户打一条不超过50 chars的 string, 然后在这条语句里面,去掉一个字母,这个字母也由用户定义。比如:user enters: this is the first test
然后要求你输入一个字母,比如:t,然后print out: his is he firs es
请问要怎么写?知道的人给一个example 或者 idea 3q
开个数组.
#include <stdio.h>
int main()
{
char a[50],ch;
int i,j;
scanf("%s",a);
scanf("%c",&ch);
for(i=0;i<50-1;i++)
if(a[i]==ch)
{
for(j=i;j<50-1;j++)
a[j]=a[j+1];
}
printf("%s",a);
return 0;
}