i fixed it

cout<< "i fixed it\n";
Last edited on
In line 72 you compare addresses of strings, not their content. use strcmp(wordToGuess, wordSoFar).
Or better use "string" class, not chars array. I.e. string wordSoFar;, not char wordSoFar [12];
Topic archived. No new replies allowed.