In: Computer Science
            Following is an infix expression.
                 
           
        &n
                
            Following is an infix expression.
                 
           
           
((A ^ B) ^ C ^ M * W / X ) ^ Y ^ Z
- Convert it into postfix and prefix using stack and verify
through binary tree.
 
- Evaluate infix, postfix and prefix with the following
values.
 
A = 2, B = 2, C = 3,
M = 1, W = 4, X = 8, Y = 1, Z = 3