题解 | #字符串反转#
字符串反转
https://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
#include <stdio.h>
#include <string.h>
int main() {
char str[1000];
scanf("%s", str);
int len = strlen(str);
char *p = str + len - 1;
while(p != str){
printf("%c", *p);
--p;
}
printf("%c", *p);
return 0;
}

