- Converts an expression of infix to postfix eg.
A*B+C/D --> AB*CD/+
- Converts an expression of postfix to infix eg.
ABC*+D- --> A+B*C-D
-
1. Clone the Repository:
git clone https://github.com/pakbungdesu/infix-postfix.git
-
2. Compile and Run: Use your preferred C++ compiler to build and execute the program