C //练习 5-3 用指针方式实现第2章中的函数strcat。函数strcat(s, t)将t指向的字符串复制到s指向的字符串的尾部。

发布时间:2024年01月10日

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;
}
文章来源:https://blog.csdn.net/navicheung/article/details/135514370
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。