|
|
@ -4,6 +4,17 @@ |
|
|
|
#include <string.h> |
|
|
|
#include <ctype.h> |
|
|
|
|
|
|
|
QuizFrage erstelleFrage(const char* frage, const char* antwortA, const char* antwortB, const char* antwortC, const char* antwortD, char korrekteAntwort) { |
|
|
|
QuizFrage neueFrage; |
|
|
|
strcpy(neueFrage.frage, frage); |
|
|
|
strcpy(neueFrage.antwortA, antwortA); |
|
|
|
strcpy(neueFrage.antwortB, antwortB); |
|
|
|
strcpy(neueFrage.antwortC, antwortC); |
|
|
|
strcpy(neueFrage.antwortD, antwortD); |
|
|
|
neueFrage.korrekteAntwort = korrekteAntwort; |
|
|
|
return neueFrage; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
void quizduell() { |
|
|
|
printf("Welcome to the singleplayer quizduell!\n"); |
|
|
|