点击状态栏的文件编码,如图片中的UTF-8。然后选择正确的文件编码重新打开你的C文件。
newStr); free(newStr); return 0; } char *replaceSpace(const char *str, int length) { int spaceCount = 0; //空格总数 // 记录空格 while (*str != EOF) { // 遍历字符串字符 if (*(str++) == ' ') { // 选择指针的位置再这里偏移 spaceCount++; } } // 替换空格...