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