Make a function in c++ . Which convert postfix to infix expression | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 8

Make a function in c++ . Which convert postfix to infix expression

postfix notation: a / ( b + c ) * d - e infix notation : a b c + / d * e -

20th Oct 2017, 8:19 AM
Kai
Kai - avatar
2 Réponses
+ 3
https://code.sololearn.com/cD46ZE5whyRr/?ref=app A C++ Code to convert : a/(b+c)*d-e --> abc+/d*e- . ________________________________________
20th Oct 2017, 3:47 PM
Kinshuk Vasisht
Kinshuk Vasisht - avatar
20th Oct 2017, 9:05 AM
Kartikey Sahu
Kartikey Sahu - avatar