From 3d22c908d86efab05a7f1d0b957ae5fc2b5a86bd Mon Sep 17 00:00:00 2001 From: Christian Reum Date: Sun, 4 Feb 2024 16:45:53 +0100 Subject: [PATCH] 3rd functional commit --- src/wwm.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/wwm.c b/src/wwm.c index fca11ed..10dd33b 100644 --- a/src/wwm.c +++ b/src/wwm.c @@ -10,6 +10,12 @@ void wwm(){ printf("Welcome to ´Who wants to be a millionaire?´ \n"); printf("You are at stage %d and have %d $\n", runde, geld); -return; + const char* question[] = { + "Which planet is known as the `blue planet`?", + "What is the capital of Germany?", + "What is the largest desert in the world?" + }; + + return; }