Infix-postfix 2018

Convert the following infix notation to postfix form:
A + (B – C * (D / E) * F)
= A + (B – C * DE/ * F)
= A + (B- CDE/* * F)
=A + (BCDE/*F*-)
ABCDE/*F*-+

This entry was posted in infix. Bookmark the permalink.

Leave a Reply

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