Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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, nance, 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]

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems For Advanced Applications 15th International Conference Dasfaa 2010 International Workshops Gdm Benchmarx Mcis Snsmw Diew Udm Tsukuba Japan April 2010 Revised Selected Papers Lncs 6193

Authors: Masatoshi Yoshikawa ,Xiaofeng Meng ,Takayuki Yumoto ,Qiang Ma ,Lifeng Sun ,Chiemi Watanabe

2010th Edition

3642145884, 978-3642145889

More Books

Students also viewed these Databases questions

Question

The number of new ideas that emerge

Answered: 1 week ago