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

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