Question: I need help creating this program in C language (not in C++) please use the prototype functions. I will give a good rating. This is

I need help creating this program in C language (not in C++) please use the prototype functions. I will give a good rating. This is my second time posting this assignment
 I need help creating this program in C language (not in
C++) please use the prototype functions. I will give a good rating.
This is my second time posting this assignment #define CRT SECURE NO
WARNINGS #include #include #include #define MAXGUESSES 5 #define WORDSIZE 25 //this function
provides instructions to the user on how to play the game void
GameRulesO //this function changes a character array to all lowercase letters void
LowerCaseWord (char word[) //this function asks the user if they want to
play another game (1 to continue, 0 to Quit) void PlayAgain(int *againPtr);
//this function creates the secret word array that is all dashes void

#define CRT SECURE NO WARNINGS #include #include #include #define MAXGUESSES 5 #define WORDSIZE 25 //this function provides instructions to the user on how to play the game void GameRulesO //this function changes a character array to all lowercase letters void LowerCaseWord (char word[) //this function asks the user if they want to play another game (1 to continue, 0 to Quit) void PlayAgain(int *againPtr); //this function creates the secret word array that is all dashes void CreateSecretword (char solution[], char secretword[]) //this function gets the users guess letter //changes it to lowercase //and adds it to the lettersGuessed array void GetTheLetterGuess(char lettersGuessed], char letterPtr, int numPtr); //this function replaces any dash in the secretword with the current character entered by the user //this function will let the user know if the letter was in the word void ReplaceDash(char solution, char secretword, char letter); //this function compares the solution and the guess word //tells the user if they have correctly guessed the word void DidYouwin(char solution[], char guess[]) /I this function runs one round of the game /input: solution word from the file and the secret word made of dashes //void return type //all other functions to Play one round of a game //are called from within the PlayOneGame function void PlayOneGame(char solution] char secretword[]) You must use function prototypes laced before the main function and all function definitions must follow the main function. All function prototypes and definitions must have a comment describing what the function does

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!