How come I can have:
stack<int> List;
but when I do the following i get errors:
stack<stack<int>> List;
I want to have a stack of stacks of integers. That would be ideal for my program. When I do the same thing with vectors it also doesn't work.