Browse Source

Update inputHandling.c

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

6
src/inputHandling.c

@ -3,6 +3,8 @@
char a[200];
void input(){
scanf("%s", a);
void input() {
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