码迷,mamicode.com
首页 > 编程语言 > 详细

C++ - 实现strcpy函数

时间:2018-12-12 18:54:31      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:www   c++   strcpy   href   print   led   code   幽默   world   

 

#include "stdio.h"

// Copies a string.
//
// strDestination: Destination string.
// strSource: Null-terminated source string.
//
// Returns the destination string.
char * MyStrcpy(char *strDestination, const char *strSource )
{
	char *tmp = strDestination;

	while(*strDestination++ = *strSource++)
		;
	*strDestination = ‘\0‘;

	return tmp;
}

int main(int argc, char* argv[])
{
	char s1[] = "Hello, World!";
	char s2[20];

	MyStrcpy(s2, s1);
	printf("%s\n", s2);
	return 0;
}

// Output:
/*
Hello, World!
*/

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!希望你也加入到我们人工智能的队伍中来!http://www.captainbed.net

C++ - 实现strcpy函数

标签:www   c++   strcpy   href   print   led   code   幽默   world   

原文地址:https://www.cnblogs.com/kwincaq/p/10109819.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!