|
|
@ -63,6 +63,23 @@ void quizduell() { |
|
|
|
printf("Your selection: "); |
|
|
|
scanf("%s", auswahl); |
|
|
|
|
|
|
|
int auswahlIndex = -1; |
|
|
|
|
|
|
|
for (int i = 0; i < MAX_CATEGORIES; i++) { |
|
|
|
if (kategorien[i].fragen != NULL && strcmp(auswahl, "Mountains") == 0) { |
|
|
|
auswahlIndex = 0; |
|
|
|
break; |
|
|
|
} |
|
|
|
else if (kategorien[i].fragen != NULL && strcmp(auswahl, "Cooking") == 0) { |
|
|
|
auswahlIndex = 1; |
|
|
|
break; |
|
|
|
} |
|
|
|
else if (kategorien[i].fragen != NULL && strcmp(auswahl, "Sports") == 0) { |
|
|
|
auswahlIndex = 2; |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |