In this project, an expression in infix (parentheses, ^, +, -, *, /, and single digit numbers are allowed) is read and is converted into postfix through the Shunting Yard algorithm. The user should ...
In infix notation, we need parentheses to show which part of the expression to solve first. In postfix notation, the order of operations is already clear, so we don’t need parentheses.