#include<stdio.h>
void strcpy(char*,char*);
void main()
{
char *str1="Camel";
char *str2="Cat";
printf("%s\n%s\n",str1,str2);
strcpy(str1,str2); /*调用函数strspy复制str2到str1*/
printf("%s\n%s\n",str1,str2);
}
void strcpy(char *t,char*s)
{
while(*s!='\0') /*将字符指针s指向的字符串的内容拷贝如字符串指针t指向的字符串*/
{
*t=*s;
t++;
s++;
}
*t=*s;
}