Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Need C code for both problems. 4 Hangman (20 points) Write an interactive program that plays a game of hangman. Store the characters of the

image text in transcribedimage text in transcribed

Need C code for both problems.

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. Guess a letter:e Letter e is not part of the secret word, you have 2 attempts left

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

Visual Basic Net Database Programming

Authors: Rod Stephens

1st Edition

0789726815, 978-0789726810

More Books

Students also viewed these Databases questions