|
@ -3,12 +3,12 @@ |
|
|
#include <string.h> |
|
|
#include <string.h> |
|
|
#include <stdio.h> |
|
|
#include <stdio.h> |
|
|
#include <stdlib.h> |
|
|
#include <stdlib.h> |
|
|
#define STRINGL 200 |
|
|
|
|
|
|
|
|
#define STRING_LENGTH 200 |
|
|
|
|
|
|
|
|
char a[STRINGL] = {0}; |
|
|
|
|
|
|
|
|
char inputBuffer[STRING_LENGTH] = {0}; |
|
|
|
|
|
|
|
|
void main() { |
|
|
void main() { |
|
|
printf("Geben Sie eine Rechenoperation ein (Bsp.: 1+1):\n"); |
|
|
printf("Geben Sie eine Rechenoperation ein (Bsp.: 1+1):\n"); |
|
|
fgets(a, STRINGL, stdin); //fgets statt scanf, holt den kompletten String inkl. Whitespace |
|
|
|
|
|
processInput(a, strlen(a)); |
|
|
|
|
|
|
|
|
fgets(inputBuffer, STRING_LENGTH, stdin); //fgets statt scanf, holt den kompletten String inkl. Whitespace |
|
|
|
|
|
processInput(inputBuffer, strlen(inputBuffer)); |
|
|
} |
|
|
} |