#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<time.h>
//使用系统提供的函数strcpy
int main0101()
{
char ch[]="hello world";
char str[100];
strcpy(str,ch);
printf("%s ",str);
return EXIT_SUCCESS;
}
//自定义函数
void my_strcpy(char*dest,char*src)
{
while(*dest++=*src);
}
int main(void)
{
char ch[]="hello world";
char str[100];
my_strcpy(str,ch);
printf("%s ",str);
return 0;
}