From 19a0b4a0343024b5a53c2d38e5f9025074ca9ef3 Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Thu, 8 Feb 2024 02:38:18 +0100 Subject: [PATCH] function zeigeAuswahl --- src/main/c/Mathe.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/c/Mathe.c b/src/main/c/Mathe.c index f16a15f..c5a5832 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -114,6 +114,13 @@ int dividiere(int zahl1, int zahl2) { } +//31 +void zeigeAuswahl(const char* text) { + printf("%s\n", text); +} + + +