- void deblank(char string[])
- {
- int i=0;
- int j=0;
- while(string[j]!='\0'){
- if(string[j]!=' '||string[j+1]!=' '){
- string[i]=string[j];
- i++;
- j++;
- }
- else
- {
- string[i]=string[j+1];
- j++;
- }
- }
- string[i]='\0';
- }
本文共 241 字,大约阅读时间需要 1 分钟。
转载于:https://blog.51cto.com/2869655/595741