What is the postfix expression corresponding to the infix expression?
x – y + z ^ a × b ^ c / d + e
In the above expression, ^ is exponentiation operator, × is multiplication operator, / is division operator, + is addition operator and – is subtraction operator also ×, + and – are left associative wile ^ is right associative.1
x y – a x ^ c b ^ × / d + e +
2
x y - z a ^ b c ^ × / d + e +
3
x y - z a ^ b c ^ × d / + e +
4
x y - z a ^ c b ^ × d / + e +
5
Question Not Attempted