char *strcat(char *s, const char *t) {
if (s == NULL || t == NULL)
return NULL;
char *temp = s;
while (*temp++)
;
--temp;
while (*temp++ = *t++)
;
return s;
}
c 程序设计语言 第二版 练习题 5-3
最新推荐文章于 2023-02-23 10:04:58 发布
char *strcat(char *s, const char *t) {
if (s == NULL || t == NULL)
return NULL;
char *temp = s;
while (*temp++)
;
--temp;
while (*temp++ = *t++)
;
return s;
}