删除空格的程序,怎么改?
#include<stdio.h>#define MAX 1000
int remove(char s[]);
int main()
{
char s[MAX];
if(remove(s)>0)
printf("%s",s[MAX]);
}
int remove(char s[])
{int i;
i=0;
whinle(s[i]!='\n')
++i;
--i;
while(i>0&&s[i]==' '&&s[i]=='\t')
--i;
if(i>0)
++i;
s[i]='0';
return i;
}
[ 本帖最后由 杰子021 于 2014-4-10 14:11 编辑 ]