Converts a vali d infix expr ession to the corresponding postfix expression an d prints it to the standar d output (cout).2. Evaluates the vali d infix expression an d pr ints the value to the standar d output (cout).3. Error checking for invali d infix expression s.4. Must use ...
A helpful observation When you convert between infix and postfix, the operands (numbers) are always in the same order The operators are probably in a different order We’re going to talk about how to convert manually between the two systems Your textbook has more information on how to do the...