From cc3f3de54be7fe3e8c3b9f4ebbc013d4b8fb0b5f Mon Sep 17 00:00:00 2001 From: Christian Reum Date: Sun, 4 Feb 2024 16:40:29 +0100 Subject: [PATCH] 2nd functional commit --- src/wwm.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/wwm.c b/src/wwm.c index 3a5e5a7..fca11ed 100644 --- a/src/wwm.c +++ b/src/wwm.c @@ -2,8 +2,14 @@ #include #include "wwm.h" +int runde = 0; +int geld = 0; +int aktuellGeld = 0; + void wwm(){ printf("Welcome to ´Who wants to be a millionaire?´ \n"); - return; + printf("You are at stage %d and have %d $\n", runde, geld); + +return; }