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