string guessingWord[89];
fstream wordList;
wordList.open("wordlist.txt");
for (int i = 0; i < 90; ++i){
wordList >> guessingWord[i];
}
wordList.close();
is there anything wrong with this code, when i try to test this code, the Access violation writing location shows up.