Browse Source

display instruction functions

main
parent
commit
651b6e0a1f
  1. 9
      src/main/quizproject.c
  2. 1
      src/main/quizproject.h

9
src/main/quizproject.c

@ -49,12 +49,17 @@ void displayLifelineInstructions(void) {
printf("\t\t>>'H' Hint: Reveals a hint for the answer.<<\n");
}
void displayInstructions(void) {
displayWelcomeMessage();
displayLifelineInstructions();
}
int main(){
displayWelcomeMessage();
displayLifelineInstructions();
displayInstructions();
return 0;
}

1
src/main/quizproject.h

@ -4,5 +4,6 @@
void displayWelcomeMessage(void);
void displayGameInstructions(char name[]);
void displayLifelineInstructions(void);
void displayInstructions(void);
#endif
|||||||
100:0
Loading…
Cancel
Save