Write a function to convert an infix expression to a postfix expression. Pass a one-dimensional character array P to the function as input (infix exp) and return character array Q (postfix exp).
Test your program for following input P : ( A – (B / C ) * D + E ) * F % G
HERE IS CORRECT SOLUTION FOR THIS QUESTION
DOWNLOAD ATTACHMENT FOR ANSWER: