首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

【C库函数】strcat兑现

2012-09-29 
【C库函数】strcat实现#include iostream#include assert.husing namespace stdchar *strcat_bxy(char

【C库函数】strcat实现

#include <iostream>#include <assert.h>using namespace std;char *strcat_bxy(char *dst, const char *src){assert(dst != NULL && src != NULL);char *tmp = dst;while(*dst != NULL){dst++;}while(*dst++ = *src++);return tmp;}void main(){char a[100] = "bxy";char *b = "123";strcat_bxy(a,b);cout << a <<endl;}

热点排行