Computer Science, asked by 4MH19IS062, 5 months ago

Write the postfix and prefix expression for following infix expression x+y*(A-B) and A*(B+C)$D

Answers

Answered by JyotirmayaMohanty
1

Answer:

When you write an arithmetic expression such as B * C, the form of the expression provides you with information so that you can interpret it correctly. In this case we know that the variable B is being multiplied by the variable C since the multiplication operator * appears between them in the expression. This type of notation is referred to as infix since the operator is in between the two operands that it is working on.

Consider another infix example, A + B * C. The operators + and * still appear between the operands, but there is a problem. Which operands do they work on? Does the + work on A and B or does the * take B and C? The expression seems ambiguous.

Similar questions