From d27bb655de580c2d8ed8864c480df1547ffb04f3 Mon Sep 17 00:00:00 2001 From: Habib Date: Fri, 2 Feb 2024 23:54:48 +0100 Subject: [PATCH] eine Funktion zur Begruessung des Benutzers erstellt --- src/c/funktionen.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/c/funktionen.c b/src/c/funktionen.c index 6747445..c0e4055 100644 --- a/src/c/funktionen.c +++ b/src/c/funktionen.c @@ -1,2 +1,9 @@ #include #include "funktionen.h" + +void welcome() { + char x[15]; + printf("Hallo! Wie heisst du?\n"); + scanf("%s", &x); + printf("\nSchöner Name, %s!\n\n", x); +} \ No newline at end of file