Infix to postfix 2019

Convert the following infix notation to postfix form:
(A + B * C ) – ( E * F / H ) + J
= ( A + BC* ) – ( EF* / H ) + J
= ( ABC*+) – (EF*H/) +J
= ( ABC*+EF*H/-) + J
ABC*+EF*H/-J+

This entry was posted in infix. Bookmark the permalink.

Leave a Reply

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