Browse Source

Fragen 1-3 für Kategorie Allgemeinwissen Level 4

main
fdai6674 2 years ago
parent
commit
66bed796ae
  1. 18
      src/main.c

18
src/main.c

@ -821,13 +821,27 @@ int main()
.size = 12 // size = anzahl an Fragen .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 = Category allgemein =
{ {
.size = 3, // size = Anzahl Level
.size = 4, // size = Anzahl Level
.name = "Allgemein", .name = "Allgemein",
.lvlQuestions = .lvlQuestions =
{ {
allgLevel1
allgLevel1, allgLevel2, allgLevel3, allgLevel4
} }
}; };

Loading…
Cancel
Save