Computer Science, asked by sadhwr42525, 3 months ago

Assume that the operators +, -, × are left-associative and ^ is right-associative. The order of precedence (from highest to lowest) is ^, * , +, -. The postfix expression corresponding to the infix expression a + b / c - d ^ e ^ f is.

Answers

Answered by joshuajampa1607
1

Answer:

Hey here is your answer:

  • Postfix = abc/+def^^-
  • Prefix = +a-/bc^^def

Hope it Helps :)

Similar questions