From 3e9130a14ab72f50cff467e719f79353bcbaf294 Mon Sep 17 00:00:00 2001 From: Eric Bagus Date: Thu, 8 Feb 2024 20:51:09 +0100 Subject: [PATCH] Expanded operation handler by double output value --- src/operationHandler.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/operationHandler.c b/src/operationHandler.c index 565969d..be3a094 100644 --- a/src/operationHandler.c +++ b/src/operationHandler.c @@ -103,4 +103,8 @@ void outputInteger(int output) { void outputLong(long output) { printf("Result: %ld", output); +} + +void outputDouble(double output) { + printf("Result: %lf", output); } \ No newline at end of file