scanf replaced with fgets
@ -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);
}