diff --git a/src/operationHandler.c b/src/operationHandler.c index 6fb44b8..93dbea7 100644 --- a/src/operationHandler.c +++ b/src/operationHandler.c @@ -3,6 +3,7 @@ #include #include #include +#include // checking integer input as operation id bool checkOperationInput(int input) { @@ -94,4 +95,8 @@ int extractFirstNumber(char* str) { strcpy(str, temp); return number; +} + +void outputInteger(int output) { + printf("Result: %d", output); } \ No newline at end of file