From 9673d4a70998f999e0621a60a65dc4939cd8b645 Mon Sep 17 00:00:00 2001 From: fdlt3885 Date: Wed, 1 Feb 2023 22:45:54 +0000 Subject: [PATCH] added total score statement to epic game --- src/main/quizproject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/quizproject.c b/src/main/quizproject.c index e44a2c0..9636797 100644 --- a/src/main/quizproject.c +++ b/src/main/quizproject.c @@ -1367,7 +1367,7 @@ void b_epic_game() { total_score += B_round8(); total_score += B_round9(); total_score += B_round10(); - + printf("You scored %d out of 22.\n", total_score); }