Answered You can hire a professional tutor to get the answer.

QUESTION

4 Hangman (20 points) Write an interactive program that plays a game of hangman.

4 Hangman (20 points)

Write an interactive program that plays a game of hangman. Store the characters of the word to be guessed in an array of type char (you can initialize your character array at declaration). Words are seven letters long. Initially, the program displays the length of the word to be guessed. This is in the form of successive stars (see example). The player guesses letters belonging to the secret word one by one. After each guess, the letters that have been guessed and the number of wrong guesses are displayed on screen. Your program should terminate when either the entire word is guessed or 4 incorrect guesses have been attempted.

Your program must be modular. Create at least two meaningful functions that abstract details such as printing the word state after a letter guess is attempted or searching for a letter within a word. Test your program for the words: abandon, annoyed, finance, aerobic, inferno, infancy.

Sample execution for word abandon:

Hi, let's play hangman.

The secret word is: ******

Guess a letter: t

Letter t is not part of the secret word, You have 3 attempts left.

******

Guess a letter: a

Letter a exists 2 times in the secret word, You have 3 attempts left.

a*a****

Guess a letter: e

Letter e is not part of the secret word, you have 2 attempts left

.......

[Make sure that the secret word changes in each test

Use stdio.h and don't use strings in the program

Also please add comments explaining your code and steps]

Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question