【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'){
相關文章
相關標籤/搜索