Link to home
Start Free TrialLog in
Avatar of matchz
matchz

asked on

Infix Expression to Prefix-Expression

I want a C++ code which convert an infix-expression (String1) into a pre-fix-expression (String2).
Avatar of mitchell042997
mitchell042997

Could you be a little clearer?  Defining what you mean by infix and prefix would be helpful.  Thanks!
Avatar of matchz

ASKER

Sorry, That's:
Infix Expression : a * b + c
=> Prefix Expression : + c * a b
ASKER CERTIFIED SOLUTION
Avatar of mitchell042997
mitchell042997

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of matchz

ASKER

Thanks a lot.