Browse Source

Added output function for long values

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

4
src/operationHandler.c

@ -100,3 +100,7 @@ int extractFirstNumber(char* str) {
void outputInteger(int output) { void outputInteger(int output) {
printf("Result: %d", output); printf("Result: %d", output);
} }
void outputLong(long output) {
printf("Result: %ld", output);
}
Loading…
Cancel
Save