diff --git a/src/casualQuiz.c b/src/casualQuiz.c index 6e948bd..b602927 100644 --- a/src/casualQuiz.c +++ b/src/casualQuiz.c @@ -7,6 +7,12 @@ void casualQuiz() { printf("Print aus der Funktion Casual Quiz"); + int index = 0; + char* easy_fragen[] = { //eingabe der Fragen in ein Array + "Which Disney character famously leaves a glass shoe behind at a royal ball?", + "The hammer and sickle is one of the most recognisable symbols of which political ideology?", + }; + return; }