How do we convert a postfix expression to infix expression? A postfix expression or a "Reverse polish notation" is useful for programming. Because our programs can easily evaluate a postfix expression. But for humans, postfix expressions are difficult to understand. So is it possible to convert a given postfix expression to infix expression? Why not? It is possible with the help of stack data structure. Remember that when converting an expression from infix to postfix , we used operator stack. But in this case we need an operand stack. What we need to do is - we extract values from expression. If there is an operand, we push it to stack. If there is an operator encountered, we pop two most recent values from stack, apply operator to them, enclose them in paranthesis and push the expression back to stack. This procedure is continued until the entire expression is scanned. In the next step, the content of stack is popped out - which will be our infix expression. So let me bul...