|
@ -43,11 +43,18 @@ void displayGameInstructions(char name[]) { |
|
|
printf("\t\tYou may lose the game if not you don't have enough points to pass to the next round.\n\n"); |
|
|
printf("\t\tYou may lose the game if not you don't have enough points to pass to the next round.\n\n"); |
|
|
printf("\t\tIf you use a lifeline and still choose the wrong answer, you lose the game.\n"); |
|
|
printf("\t\tIf you use a lifeline and still choose the wrong answer, you lose the game.\n"); |
|
|
} |
|
|
} |
|
|
|
|
|
void displayLifelineInstructions(void) { |
|
|
|
|
|
printf("\t\t>>You have the following lifelines available:<< \n"); |
|
|
|
|
|
printf("\t\t>>'F' 50-50: Eliminates two incorrect answers.<< \n"); |
|
|
|
|
|
printf("\t\t>>'H' Hint: Reveals a hint for the answer.<<\n"); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main(){ |
|
|
int main(){ |
|
|
displayWelcomeMessage(); |
|
|
displayWelcomeMessage(); |
|
|
|
|
|
displayLifelineInstructions(); |
|
|
return 0; |
|
|
return 0; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|