赞
踩
首先我是个渣渣,本文仅限参考
- <strong>#include<stdio.h>
- #include<stdlib.h>
- #include<string.h>
- #include<assert.h>
- char* my_strncat(char*str,const char*arr,int count)</strong>//模拟实现strncat函数<strong>
- {
- assert(str);
- assert(arr);
- char *tmp= str;
- while(*str!='\0')
- {
- *str++;//找到str中的\0
- }
- while(count--)
- {
- *str++=*arr++;
-
- }
- *str='\n';
- return tmp;
- }
- int main()//测试程序
- {
- char arr[10]="abcdef";
- int len=strlen(arr);
- my_strncat(arr,arr,len);
- printf( "%s\n",arr);
- return 0;
- }
- </strong>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。