Consider the following infix expression. what is the prefix expression for a given infix expression?
Infix: ((a +b)*(c-d))
1
* + a b -c d
2
* + ba - dc
3
a b+c d-*
4
ba +c d-*
Consider the following infix expression. what is the prefix expression for a given infix expression?
Infix: ((a +b)*(c-d))