Enter the Infix Expression : a+b*c
The converted Expression in Postfix is : abc*+
Enter the Infix Expression : a+b*c/(d-e)+f
The converted Expression in Postfix is : abc*de-/+f+
Enter the Infix Expression : a+b*c-d/e+f
The converted Expression in Postfix is : abc*+de/-f+