Example of conversion of infix to postfix
Answers
Answered by
2
Infix -------- Postfix
A + B ------- A B +
A + B * C ------- A B C * +
A + B ------- A B +
A + B * C ------- A B C * +
Similar questions