diff --git a/src/wwm.c b/src/wwm.c index eb70582..c8f8e77 100644 --- a/src/wwm.c +++ b/src/wwm.c @@ -15,6 +15,15 @@ int setGeld(int runde){ } +int crandomNumber() { + srand(time(NULL)); + frage = rand() % 10; + return frage; + +} + + + void wwm(){ printf("Welcome to ´Who wants to be a millionaire?´ \n"); @@ -60,7 +69,7 @@ void wwm(){ printf("__________________________________________________ \n\n"); printf("You are at stage %d and have %d $\n", runde, geld); srand(time(0)); - int frage = rand() % 10; + crandomNumber(); printf("Question %d: %s\n", runde + 1, question[frage]); for (int i = 0; i < 4; i++) {