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

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