Which of the following data structure is used to convert postfix expression to infix expression?

Which of the following data structure is used to convert postfix expression to infix expression? Correct Answer Stack

To convert the postfix expression into infix expression we need stack. We need stack to maintain the intermediate infix expressions. We use stack to hold operands.

Related Questions

Given two processes (conversion of postfix equation to infix notation and conversion of prefix notation to infix notation), which of the following is easier to implement?