Quote Originally Posted by youngyou4 View Post
Code:
 int evalExp (const string &)
I dont know where to even start from here. I understand i have to create a empty stack but i dont even know where to begin.
Code:
#include <stack>

int main()
{
   std::stack<int> IntStack; // an empty stack of integers
}
Regards,

Paul McKenzie