diff --git a/src/wwm.c b/src/wwm.c index 1a5496b..0968318 100644 --- a/src/wwm.c +++ b/src/wwm.c @@ -31,6 +31,12 @@ void wwm(){ srand(time(0)); int frage = rand() % 5; + + printf("Question %d: %s\n", runde + 1, question[frage]); + + for (int i = 0; i < 4; i++) { + printf("%d. %s \n", i + 1, answers[frage][i]); + return; }