From 66bed796ae4e5772d7e421420ea503e4aa8a9b83 Mon Sep 17 00:00:00 2001 From: fdai6674 Date: Sat, 4 Feb 2023 23:42:56 +0100 Subject: [PATCH] =?UTF-8?q?Fragen=201-3=20f=C3=BCr=20Kategorie=20Allgemein?= =?UTF-8?q?wissen=20Level=204?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index c2d56f8..e95ffe3 100644 --- a/src/main.c +++ b/src/main.c @@ -821,13 +821,27 @@ int main() .size = 12 // size = anzahl an Fragen }; + Question allgQst37 = {.question = "Welche Stadt ist bekannt fuer ihre Kanaele und ihr niederlaendisches Architekturerbe?", .answer = "Amsterdam"}; + Question allgQst38 = {.question = "Welche Stadt ist die Hauptstadt von Brasilien?", .answer = "Brasilia"}; + Question allgQst39 = {.question = "Welche Stadt ist bekannt fuer ihre historischen Bauwerke wie das Brandenburger Tor?", .answer = "Berlin"}; + + + Level allgLevel4 = + { + .questions = + { + allgQst37, allgQst38, allgQst39 + }, + .size = 3 // size = anzahl an Fragen + }; + Category allgemein = { - .size = 3, // size = Anzahl Level + .size = 4, // size = Anzahl Level .name = "Allgemein", .lvlQuestions = { - allgLevel1 + allgLevel1, allgLevel2, allgLevel3, allgLevel4 } };