C語言小練習——自定義2個字符數組,不使用系統提供的strcat()函數,實現strcat()函數功能。

/*自定義2個字符數組,不使用系統提供的strcat()函數  * ,實現strcat()函數功能。*/ #include <stdio.h> int main(int argc, const char *argv[]) {     char a[]="hello";     char b[]="world";     int i=0,j=0;     while(a[i]!='\0')     
相關文章
相關標籤/搜索