#include <iostream>
#include <vector>
#include <stack>
Hi!
In the Standart Template Library I am stading stack and queues.

One way to instantiate is creating a stack that uses an underlying container , in this case vector,

Can anyone give me an example about how to use this?
I mean how can I use the function members of the container vector in the next code?
What is the difference between a simply stack of integers and the stack of integers containes in a vector?

Thanks


using namespace std;

int main()
{

stack<int,vector<int>> mystack; //vector ???????

mystack.push(2);
mystack.push(8);

cout<<mystack.top();

return 0;
}