char lowerCaseWord[LENGTH + 1]; for (int i = 0; word[i]; i++) { lowerCaseWord[i] = tolower(word[i]); }. the array lowerCaseWord[] is not used anywhere, ...
確定! 回上一頁