Browse Source

Added important instruction in guesstheword

main
fdlt3859 2 years ago
parent
commit
d03ee23950
  1. 16
      src/main/quizproject.c

16
src/main/quizproject.c

@ -556,6 +556,12 @@ void play_guessTheWord() {
char guess; char guess;
guess = toupper(guess); guess = toupper(guess);
printf("***********************\n");
printf("Playing Guess the Word!\n");
printf("***********************\n\n");
printf("IMPORTANT: The first letter is a capital letter!\n\n");
while (lives > 0) { while (lives > 0) {
int i; int i;
int correct = 0; int correct = 0;
@ -578,13 +584,19 @@ void play_guessTheWord() {
} }
if (strcmp(word, guessed) == 0) { if (strcmp(word, guessed) == 0) {
printf("You win! The word was: %s\n", word);
printf("You win! The word was: %s\n\n", word);
printf("*************************************\n");
printf("Thank you for playing Guess the Word!\n");
printf("*************************************\n");
break; break;
} }
} }
if (lives == 0) { if (lives == 0) {
printf("You lose! The word was: %s\n", word);
printf("You lose! The word was: %s\n\n", word);
printf("*************************************\n");
printf("Thank you for playing Guess the Word!\n");
printf("*************************************\n");
} }
} }

Loading…
Cancel
Save