Infix to postfix 2017

Convert the following infix expression to postfix form:
P * Q / R + (S + T)
= P * Q / R + ST+
= P Q* / R + ST+
= PQ*R/ + ST+
P Q * R / S T + +

This entry was posted in infix. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *