【C语言】自定义链接两个字符串函数

#include <stdio.h> #include <stdlib.h> char* strcat_self(char *strFrist,char *strSecond){ int i=0,j=0; static char newstr[20]; char *p; p = newstr; while(*(strFrist+i)!='\0'){
相关文章
相关标签/搜索