Stack
Types of Expression
Infix Expression:
The operator is in between the two operands.
Example: A + B is known as infix expression.Postfix Expression:
The operator is after the two operands.
Example: BD + is known as postfix expression.Prefix Expression:
The operator is before the two operands.
Example: + BD is known as prefix expression.
Programs:
Last updated