diff --git a/src/main/c/programmingMode.c b/src/main/c/programmingMode.c index e4c2b8d..40da798 100644 --- a/src/main/c/programmingMode.c +++ b/src/main/c/programmingMode.c @@ -3,7 +3,7 @@ #include #include -#include "taschenrechner.h" +#include "calculator.h" // get the NUmbers from the user int getIntegerInput(const char* prompt) { @@ -52,4 +52,4 @@ void programmingMode() { // Calculation + Display the result printf("Result: %d\n", performOperation(num1, operator, num2)); -} \ No newline at end of file +}