Version 1:
This is a Infix to Postfix Converter that easily convert the infix expression
to postfix expression with ease. This version without the use of data structure
such that stack. This version will be stable and can be helpful in your
currently doing project. Here is an example
Infix: 4+5-3
Postfix: 45+3-