字符串拷贝

#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\n",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\n",str);  

  return 0;

}

posted @ 2020-09-03 19:37  wh19991213  阅读(89)  评论(0编辑  收藏  举报