1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-12-16 15:44:39 +00:00
202401-programming-assignments/【实践课外】14.指针2/6-3 字符串反正序连接.c

16 lines
227 B
C
Raw Normal View History

2024-12-04 04:45:47 +00:00
void fun(char *s, char *t) {
int len = strlen(s);
for (int i = len - 1; i >= 0; i--) {
*t = s[i];
t++;
}
for (int i = 0; i < len; i++) {
*t = s[i];
t++;
}
*t = '\0';
}