Infix to postfix-3
Example 10: (a – b) * c – d Read ‘(‘ and push onto stack: Stack = ( Read ‘a’ and add to output: Output = a Read ‘-‘ and push onto stack: Stack = (, – Read ‘b’ and add to output: Output = ab Read ‘)’ and pop operators until ‘(‘: Output = …