C和指针之strcat函数 strchr函数 strcmp函数 strcpy函数 strnchr函数 strstr函数实现

举报
chenyu 发表于 2021/07/26 23:46:55 2021/07/26
【摘要】  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函数实现


  
  1. #include <stdio.h>
  2. //简单实现strcat函数
  3. char *my_strcat(char *des, const char *src)
  4. {
  5. if (des == NULL || src == NULL)
  6. return des;
  7. char *result = des;
  8. //把指针移到末尾
  9. while (*des)
  10. des++;
  11. printf("*des is %c\n", *des);
  12. while ((*des++ = *src++) != '\0');
  13. return result;
  14. }
  15. int main()
  16. {
  17. char des[30] = "chenyu";
  18. const char *src = "hello";
  19. printf("des is %s and my_strcat result is %s\n",des, my_strcat(des, src));
  20. return 0;
  21. }

运行结果:


  
  1. /**
  2. vim my_strcat.c
  3. gcc -g my_strcat.c -o strcat
  4. ./strcat
  5. *des is
  6. des is chenyuhello and my_strcat result is chenyuhello
  7. **/

 

 

 

 

2 strchr函数实现


  
  1. #include <stdio.h>
  2. #include <string.h>
  3. /**
  4. 简单模拟strchr函数
  5. **/
  6. char *my_strchr(const char *des, int ch)
  7. {
  8. if (des == NULL)

文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。

原文链接:chenyu.blog.csdn.net/article/details/84557507

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。