From 3c85f0f767cf1ef022afc46eeddbbb28ef1baab0 Mon Sep 17 00:00:00 2001 From: Christian Reum Date: Sun, 4 Feb 2024 16:46:47 +0100 Subject: [PATCH] 4th functional commit --- src/wwm.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/wwm.c b/src/wwm.c index 10dd33b..d3f211c 100644 --- a/src/wwm.c +++ b/src/wwm.c @@ -16,6 +16,12 @@ void wwm(){ "What is the largest desert in the world?" }; + const char* answers[][4] = { + {"Mars", "Venus", "Earth", "Jupiter"}, + {"Munich", "Berlin", "Cologne", "Frankfurt am Main"}, + {"Antarctica", "Sahara", "Gobi", "Arctica" } + }; + return; }