C语言—strcat()

作者:追风剑情 发布于:2019-10-21 20:14 分类:C

strcat()函数用于拼接字符串。

示例


  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <stdbool.h>
  6. //strcat()函数的原型在string.h
  7. #include <string.h>
  8.  
  9. #define SIZE 80
  10.  
  11. char * s_gets(char * st, int n);
  12.  
  13. //argc: 参数个数 argv[]: 参数数组
  14. int main(int argc, char *argv[])
  15. {
  16. char flower[SIZE];
  17. char addon[] = "s smell like old shoes.";
  18. puts("What is your favorite flower?");
  19. if (s_gets(flower, SIZE))
  20. {
  21. //将addon连接到flower后面
  22. strcat(flower, addon);
  23. puts(flower);
  24. puts(addon);
  25. }
  26. else
  27. puts("End of file encountered!");
  28. puts("bye");
  29.  
  30. system("pause");
  31. return 0;
  32. }
  33.  
  34. // 自己实现读取函数
  35. char * s_gets(char * st, int n)
  36. {
  37. char * ret_val;
  38. int i = 0;
  39. ret_val = fgets(st, n, stdin);
  40. if (ret_val) //即,ret_val != NULL
  41. {
  42. while (st[i] != '\n' && st[i] != '\0')
  43. i++;
  44. if (st[i] == '\n')
  45. st[i] = '\0';
  46. else
  47. while (getchar() != '\n')
  48. continue;
  49. }
  50. return ret_val;
  51. }


运行测试

1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号