@ -11,4 +11,4 @@
:failed: 0
:ignored: 0
:stdout: []
:time: 0.01702869999996892
:time: 0.01640070000007654
@ -15,4 +15,4 @@
:time: 0.031989800000019386
:time: 0.031963899999936984
:time: 0.016469199999960438
:time: 0.015579099999968093
:time: 0.016439999999988686
:time: 0.01601919999995971
@ -4,6 +4,10 @@
#include <string.h>
#include <ctype.h>
int pruefeAntwort(QuizFrage frage, char antwort) {
return (frage.korrekteAntwort == antwort);
}
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);