Browse Source

eine Funktion zur Begruessung des Benutzers erstellt

remotes/origin/habib
Habib 11 months ago
parent
commit
d27bb655de
  1. 7
      src/c/funktionen.c

7
src/c/funktionen.c

@ -1,2 +1,9 @@
#include <stdio.h>
#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);
}
Loading…
Cancel
Save