Browse Source

Fragen 1-3 für Kategorie Allgemeinwissen Level 1

main
fdai6674 2 years ago
parent
commit
8a490d477e
  1. 30
      src/main.c

30
src/main.c

@ -749,11 +749,37 @@ int main()
} }
}; };
Category categories[4] = {fussball, kunst, rechnen};
Question allgQst1 = {.question = "Wie heißt die Hauptstadt von Frankreich?", .answer = "Paris"};
Question allgQst2 = {.question = "Wie heißt die Hauptstadt von Deutschland?", .answer = "Berlin"};
Question allgQst3 = {.question = "Wie heißt die Hauptstadt von Japan?", .answer = "Tokio"};
Level allgLevel1 =
{
.questions =
{
allgQst1, allgQst2, allgQst3
},
.size = 3 // size = anzahl an Fragen
};
Category allgemein =
{
.size = 1, // size = Anzahl Level
.name = "Allgemein",
.lvlQuestions =
{
allgLevel1
}
};
Category categories[4] = {fussball, kunst, rechnen, allgemein};
printf("Willkommen beim Quiz-Spiel! Beantworten Sie die folgenden Fragen:\n"); printf("Willkommen beim Quiz-Spiel! Beantworten Sie die folgenden Fragen:\n");
int catCount = 3; // anzahl an kategorien
int catCount = 4; // anzahl an kategorien
char input[256]; char input[256];
startGame(catCount, input, categories); startGame(catCount, input, categories);

Loading…
Cancel
Save