Assume that the operators +, -, × are left associative and ^ is right associative. The order of precedence (from highest to lowest) is ^, x , +, -. The postfix expression corresponding to the infix ex
1.abc × + def ^ ^ -
2.abc × - def ^ ^ +
3.abc × + de ^ f ^ -
4.abc + × def ^ ^ -