Convert the given prefix expression to postfix. + * + a b c / d + e * f g h
Answers
Answered by
1
Answer:
prefix +*+/+* abcdefgh
infix a+b*c+d/e+f*g h
post fix abcdefgh +*+/+*
Similar questions