Browse Source

final score and thankyou message func

main
parent
commit
c7f12438e3
  1. 10
      src/main/quizproject.c
  2. 1
      src/main/quizproject.h

10
src/main/quizproject.c

@ -103,7 +103,6 @@ void printOutOption(char qS[][100], char qC[][100],char aS[]){
if(response == aS[i]){
score++;
correct(score);
fact(i);
} else {
wrong(score);
}
@ -145,6 +144,8 @@ int k = 0;
k++;
}
printf("\nYour final score: %d\n", score);
}
void ask_questions(void) {
@ -175,6 +176,12 @@ void hint(int question_num) {
printf("%s\n",qC[question_num]);
}
void displayThankYouMessage(void) { // 4 & 5
printf("*******************************\n");
printf("Thank you for playing QuizGame!\n");
printf("*******************************\n\n");
}
int main(){
displayInstructions();
@ -186,6 +193,7 @@ int main(){
}
printf("\n");
ask_questions();
displayThankYouMessage();
return 0;
}

1
src/main/quizproject.h

@ -13,5 +13,6 @@ void correct(int);
void wrong(int);
int score = 0;
void printOutOption(char [][100], char [][100],char []);
void displayThankYouMessage(void);
#endif
Loading…
Cancel
Save