Small calculator coded in c++. Intended to be used in a terminal, takes argument(s) and outputs the result(s) chronologically.
The code is about 200lines, and benefits from the shunting yard algorithm.
This is not a complete calculator, don't know if it will be because i only coded it to enable myself to do quick calculations while in a terminal. Therefore it does not check for typos, and a wrong formulated expression may result into a segmentation fault.
It's infix notation, and as long...