...删除字符串中的所有空格后,输出字符串。(用指针方法解决) 请问_百...
发布网友
发布时间:2024-10-23 18:30
我来回答
共1个回答
热心网友
时间:7分钟前
看下面的代码就明白了:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
int main(void){
char s[500];
int i,j,k;
printf("Please enter a string...\n");
gets(s);
for(j=i=0;s[i];i++)
if(s[i]!=' ')
s[j++]=s[i];
s[j]='\0';
printf("\nThe final result is:\n%s\n",s);
return 0;
}