写一函数将字符数组s1中的全部字符复制到字符数组s2中,不用strcpy函数

#define _CRT_SECURE_NO_WARNINGS
#include
#include
#include
#include
#include


int mystrcpy(char *p,char *p1)
{
	while (*p1 != '\0')
	{
		*(p++) = *(p1++);
	}
	*p = '\0';
}
void main()
{
	char a1[100] = "abcdefg";
	char a[100];
	mystrcpy(a,a1);
	printf("%s", a);//打印结果
	system("pause");
}
写一函数将字符数组s1中的全部字符复制到字符数组s2中,不用strcpy函数_第1张图片

你可能感兴趣的:(cc++编程)