Browse Source

Expanded operation handler by double output value

remotes/origin/develop
Eric Bagus 11 months ago
parent
commit
3e9130a14a
  1. 4
      src/operationHandler.c

4
src/operationHandler.c

@ -103,4 +103,8 @@ void outputInteger(int output) {
void outputLong(long output) { void outputLong(long output) {
printf("Result: %ld", output); printf("Result: %ld", output);
}
void outputDouble(double output) {
printf("Result: %lf", output);
} }
Loading…
Cancel
Save