我是靠谱客的博主 个性咖啡,最近开发中收集的这篇文章主要介绍C语言,模拟实现strcpy、strlen函数                                      模拟实现strcpy、strlen函数 ,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

                                      模拟实现strcpy、strlen函数 

 1、模拟实现strcpy

  方法一:

#include<stdio.h>
#include<string.h>
int main()
{
char arr1[10] = {0};
char arr2[] = "abcdef";
strcpy(arr1, arr2);//arr1目标,arr1和arr2位置不能改变
printf("%sn",arr1);
return 0;
}

   方法二:

#include<stdio.h>
#include<assert.h>
char *my_strcpy(char *dest,const char *src)//dest= Destination,src=source
{
char *ret = dest;
assert(dest);//assert确保你的程序按目标正常运行
assert(src);
while(*dest++ = *src++)
{
;
}
return ret;
}
int main()
{
char *p = "hello";
char arr[10];
printf("%sn",strcpy(arr,p));
return 0;
}

2.模拟实现strlen

#include<stdio.h>
#include<assert.h>
int my_strlen(const char *str)
{
int count = 0;
assert(str);
while(*str)
{
count++;
str++;
}
return count;
}
int main()
{
printf("%dn",my_strlen("hello world"));
return 0;
}



                                            

最后

以上就是个性咖啡为你收集整理的C语言,模拟实现strcpy、strlen函数                                      模拟实现strcpy、strlen函数 的全部内容,希望文章能够帮你解决C语言,模拟实现strcpy、strlen函数                                      模拟实现strcpy、strlen函数 所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部