diff --git a/src/main/quizproject.c b/src/main/quizproject.c index 648358d..a4b4c76 100644 --- a/src/main/quizproject.c +++ b/src/main/quizproject.c @@ -299,6 +299,35 @@ void print_guess_word_question (char guessWord[][100], char guessSolution[][100] } } + +void e_printout() { + + + printf("\t\t---------------------------Round5-----------------------------\n\n"); + printf("\t\t >>You are represented with an Anagram in each question.<<\n"); + printf(" >>Determine what word it is.<<\n\n"); + printf("\t\t-------------------------------------------------------------\n\n"); + + +} + +void e_anagram_questions() { + char questions[][100] = { + "development", + "international", + "pilgrimage", + "operation", + "population", + "progress" + }; + + + + + e_printout(); +} + + void e_smart_brain() { e_display_instruction(); e_ask_questions(); @@ -306,6 +335,7 @@ void e_smart_brain() { e_questions_r3(); } guess_word_questions(); + e_anagram_questions(); score = 0; track_r2_score = 0; } diff --git a/src/main/quizproject.h b/src/main/quizproject.h index ecde000..a82b9d6 100644 --- a/src/main/quizproject.h +++ b/src/main/quizproject.h @@ -47,6 +47,8 @@ void e_printout_r3 (char [][100], char [][100]); int track_r2_score = 0; void guess_word_questions(void); void print_guess_word_question (char [][100], char [][100],char [][100], int []); +void e_printout(void); +void e_anagram_questions(void); //----smart_brain_header_end------- //Epic Game Headers