Hangman Game Letter Track

I am done with my hangman game the only think I would like to do now is show the missed letters on the screen. I assume I would use an array for this. I'm stuck on how to write this though, I want to keep track of the letters missed and display them? Anything would be appreciated. Thanks.

I can post my code if that would help any.
make an array of bools, 1 for each character allowed in your game. Set all to false. As they are used, set to true. Iterate over it to print the list of used. Note that chars are stored sequentially in ascii, so you can very easily map the letters assuming ascii letters are all you allowed.
Topic archived. No new replies allowed.