需求:去掉字符串中的空格,包括字符串前,字符串中间以及字符串后面的空格。
#include
#include
int main(){
char str[20]=" abc d e ";
int i=0;
while(str[i]!='\0'){
if(str[i]==' ')
for(int j=i;j<strlen(str);j++) // 一旦找到空格,就将空格后的字符串整体前移
str[j]=str[j+1];
else
i++;
}
printf("%s\n",str); // 输出abcde
return 0;
}