C和指针之strcat函数 strchr函数 strcmp函数 strcpy函数 strnchr函数 strstr函数实现
【摘要】 1 strcat函数实现
#include <stdio.h>//简单实现strcat函数char *my_strcat(char *des, const char *src){ if (des == NULL || src == NULL) return des; char *result = des; //把指针移到末尾 while...
1 strcat函数实现
-
#include <stdio.h>
-
//简单实现strcat函数
-
char *my_strcat(char *des, const char *src)
-
{
-
if (des == NULL || src == NULL)
-
return des;
-
char *result = des;
-
//把指针移到末尾
-
while (*des)
-
des++;
-
printf("*des is %c\n", *des);
-
while ((*des++ = *src++) != '\0');
-
return result;
-
}
-
int main()
-
{
-
char des[30] = "chenyu";
-
const char *src = "hello";
-
printf("des is %s and my_strcat result is %s\n",des, my_strcat(des, src));
-
return 0;
-
}
运行结果:
-
/**
-
vim my_strcat.c
-
gcc -g my_strcat.c -o strcat
-
./strcat
-
*des is
-
des is chenyuhello and my_strcat result is chenyuhello
-
**/
2 strchr函数实现
-
#include <stdio.h>
-
#include <string.h>
-
-
/**
-
简单模拟strchr函数
-
**/
-
char *my_strchr(const char *des, int ch)
-
{
-
if (des == NULL)
文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。
原文链接:chenyu.blog.csdn.net/article/details/84557507
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)