C program for Conversion of an expression from postfix into infix and vice verse
04:29
/*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)) 
 

 
 
 
 
 
0 comments: