注意:此页面搜索的是所有试题
下面程序的功能是删除字符串s中的空格。
#include
main()
{ char *s="Beijing ligong daxue";
int i,j;
for(i=j=0;s[i]!=.\0.;i++)
if(s[i]!= . .) ① ;
else ② ;
s[j]= .\0.;
printf("%s",s);
}

参考答案