欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C语言:编写一个函数,strcpy,dest,src,它从一个字符串中提取一个子字符串。

程序员文章站 2022-04-14 09:01:30
#include #include #include //链...
<strong>#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
//链式访问
char* my_strcpy(char *dest, const char *src)
{ char *ret = dest;
 assert(src != null);
 assert(dest != null);
 while (*dest++ = *src++)
 {
  ;
 }
 return ret;
}
int main()
{
 char *p = "bit-tech";
 char arr[20];
 char *ret1=my_strcpy(arr, p);
 printf("%s\n", ret1);
 return 0;
}</strong>