I am writing an objective c program for hangman. I need to replicate another program which has been given to me. I have done most of it, but am having an issue. It has to replic
You are checking number but seems that you must check wordLength variable, and (as pointed out by @Narkha) use break instead of continue to exit from loop.