1.

Data Structure: What is the infix version of the following postfix expression? x 12 + z 17 y + 42 * / +

A. x + 12 + z / 17 + y * 42
B. x + 12 + z / ((17 + y) * 42)
C. (x + 12 + z) / (17 + y * 42)
D. None of the above.
Answer» C. (x + 12 + z) / (17 + y * 42)


Discussion

No Comment Found