6-3 '字符串02-字符串复制(赋值) (10 分)

C语言标准函数库中包括 strcpy 函数,用于字符串复制(赋值)。作为练习,我们自己编写一个功能与之相同的函数。
函数原型

// 字符串复制(赋值)
char* StrCpy(char *dst, const char *src);

说明:src 为源串的起始地址,dst 为目的串起始地址,函数将 src 串复制到 dst 串,函数值为 dst。
裁判程序

#include

// 字符串复制(赋值)
char* StrCpy(char *dst, const char *src);

int main()
{
char a[1024], b[1024];
gets(a);
StrCpy(b, a);
puts(a);
puts(b);
return 0;
}

/* 你提交的代码将被嵌在这里 */

输入样例

abcd

输出样例

abcd
abcd

char* StrCpy(char *dst, const char *src)
{
	dst=strcpy(dst,src);
	return dst;
} 

你可能感兴趣的:(学习,C语言,数据结构)