**
请实现一个函数,把字符串 s 中的每个空格替换成"%20"
**
示例 1:
输入:s = “We are happy.”
输出:“We%20are%20happy.”
char* replaceSpace(char* s)
{
char *t=(char *)malloc(max*sizeof(char));
int i,j=0;
for (i=0;s[i]!='\0';++i)
{
if(s[i]==' ')
{
t[j++]='%';
t[j++]='2';
t[j++]='0';
}
else
t[j++]=s[i];
}
t[j]='\0';
return t;
}