C程序设计语言 (第二版) 练习 5-3
练习 5-3 用指针方式实现第2章中的函数strcat。函数strcat(s, t)将t指向的字符串复制到s指向的字符串的尾部。
注意:代码在win32控制台运行,在不同的IDE环境下,有部分可能需要变更。
IDE工具:Visual Studio 2010
代码块:
#include <stdio.h>
#include <stdlib.h>void strcat(char *s, char *t){int i, j;for(i = 0; s[i] != '\0'; i++);for(j = 0; (s[i++] = t[j++]) != '\0';);
}int main(){char s[30] = "hello ";char t[] = "world!";strcat(s, t);printf("%s\n", s);system("pause");return 0;
}