變量自我調用的坑

1.錯誤代碼 #include <stdio.h> #include <string.h> //實現字符串的連接 char* mycat(char* dst, const char* src)//第一個參數要被拷貝內容進來,所以不能是const { int idx = 0; while (src[idx] != '\0') {//當遇到結束符時退出循環 dst[
相關文章
相關標籤/搜索