Browse Source

Update inputHandling.c

scanf replaced with fgets
master
Sophia Weber 11 months ago
parent
commit
27053a1a75
  1. 4
      src/inputHandling.c

4
src/inputHandling.c

@ -4,5 +4,7 @@
char a[200];
void input() {
scanf("%s", a);
printf("Geben Sie eine Rechenoperation ein (Bsp.: 1+1):\n");
fgets(a, 200, stdin); //fgets statt scanf, holt den kompletten String inkl. Whitespace
printf("Ihre Berechnung: %s \n", a);
}
Loading…
Cancel
Save