Postfix expression calculator written in C
Written by: Rade Latinovich
- Only supports use of integers
- Only supports 5 operations
- Addition / Subtraction
- Multiplication / Division
- Exponentiation
I: 12 3 +
O: 15
I: 12 3 + 34 12 - *
O: 330
I: 2 10 ^ 12 /
O: 85
- Start of project
- stack methods work properly
- started to work on RPC calculator
- started to work on a scanner structure to make it easier to implement RPC calculator
- got postfix working properly
- updated main to take input strings for postfix evaluation