From 0b9591a3828555f0c77f29eae87a1de1729262a1 Mon Sep 17 00:00:00 2001 From: Florian Baeseler Date: Sun, 4 Feb 2024 17:00:11 +0100 Subject: [PATCH] =?UTF-8?q?hinzuf=C3=BCgen=20Fragenarray?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/casualQuiz.c | 6 ++++++ 1 file changed, 6 insertions(+) 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; }