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 } };