Discuss the below:
Q: Implement a C++ program that converts an infix expression into a postfix expression and then evaluates the postfix expression. I am using the Stack and Queue classes I developed with a List class (linked list) that manages the data in the stack and queue.
The output will be: Print out the infix expression, the postfix expression, and the calculated results of the expression.