C program for Conversion of an expression from postfix into infix and vice verse


/*Conversion of an expression from postfix into infix
  Conversion of an expression from postfix into prefix
*/



output :>
Enter a postfix expression :abc*+                                               
                                                                                  
Prefix :    +a*bc                                                               
Infix :     (a+(b*c))