Chinaunix首页 | 论坛 | 博客
  • 博客访问: 368998
  • 博文数量: 100
  • 博客积分: 2500
  • 博客等级: 大尉
  • 技术积分: 1209
  • 用 户 组: 普通用户
  • 注册时间: 2011-04-15 21:24
文章分类

全部博文(100)

文章存档

2011年(100)

分类: C/C++

2011-05-20 13:24:42


  1. #include <stdio.h>
  2. #include <string.h>

  3. char *myStpcpy(char *des, const char *src);

  4. int
  5. main(void)
  6. {
  7.     char res[20];
  8.     char *to = res;
  9.     to = myStpcpy(to, "hello");
  10.     to = myStpcpy(to, " world\n");

  11.     printf(res);

  12.     return 0;
  13. }

  14. char *
  15. myStpcpy(char *des, const char *src)
  16. {
  17.     if (NULL == des || NULL == src)
  18.         return NULL;

  19.     char *d = des;
  20.     const char *s = src;

  21.     do
  22.         *d++ = *s;
  23.     while (*s++ != '\0');

  24.     return (d - 1);
  25. }

  • 方便字符串连接。
阅读(1565) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~