USING C++:
Consider the precedence levels of the relational, logical, and
arithmetic operators of the PySub language to be as follows (NOTE:
5 has highest precedence and 0 lowest):
5
*, /, %
4
+, -
3
<, <=, >, >=, !=, ==
2
not
1
and
0
or
1. Infix-Postfix Conversion and
Evaluation with Logical and Relational operators –
Convert the following infix expression to a postfix expression and
evaluate the result (assume that true=1 and false=0). Provide both
the...