Write a function that takes a string as input and returns the string reversed.
Example:
Given s = "hello", return "olleh".
char* reverseString(char* s) {
int i=0,temp=0;
int len=strlen(s);
for(i=0;i<len/2;i++){
temp=s[len-1-i];
s[len-1-i]=s[i];
s[i]=temp;
}
return s;
}
这道题是自己写的,嗯
一开始测试用例“a.”我的输出还是“a.”
然后我就自己手动跑了一遍,发现i<=len/2这里不能加=,加=后翻转翻转等于没变位置
这道题是在悦神的鄙视下写的.......