diff --git a/src/main/quizproject.c b/src/main/quizproject.c index abb9b1a..1bdfc29 100644 --- a/src/main/quizproject.c +++ b/src/main/quizproject.c @@ -11,6 +11,10 @@ void displayWelcomeMessage(void) { printf("\t\t Welcome to The Quiz \n\n"); printf("\t\t------------------------------------------\n"); printf("\t\t------------------------------------------\n\n"); + printf("\t\t Press 'Enter' to begin the Game \n"); + char startGame; + scanf("%c", &startGame); + startGame = toupper(startGame); }