From 5c622dbae9d151a0b4bbe6d6f9e81aba35b175ee Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Wed, 7 Feb 2024 23:46:36 +0100 Subject: [PATCH] Function call to display selection text --- src/main/c/Mathe.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/c/Mathe.c b/src/main/c/Mathe.c index 91fcf56..d172f55 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -192,4 +192,12 @@ int dividiere(int zahl1, int zahl2) { printf("Fehler: Division durch Null vermieden.\n"); return 0; } -} +} + + + +//31 +void zeigeAuswahl(const char* text) { + printf("%s\n", text); +} +