Could anyone help with my code. Im trying to do a program that infix to postfix
for an algebra equation. Also , im trying to get the Result from the equation.
My 1st question is this...
when i compile my code on VISUAL BASIC 2008 it says this...
int priority(char value);
int main()
{
ItemType<char> ArrayOne;
ItemType<char> Post;
//Ive got til here my postfix (Post) , and now im trying to create another dynamic Array to inverse that postfix so I can have the 1st digit on "Top" Example : infix: (2+1)/(9-6)
my Post : 21+96-/
so my Reverse Rev will be /-69+12 --> 2 on top... to use it for the result.
//.. TO START PASSING VALUES TO ANOTHER DYNAMIC ARRAY , SO I CAN START ADDITION ITS SAYS THIS ....
1: warning C4715: 'ItemType<char>::Top' : not all control paths return a value
: warning C4715: 'ItemType<int>::Top' : not all control paths return a value