#include
int main ()
{
std::vector v;
// Instantiate a vector with 10 elements (it can grow larger)
std::vector v1 (10);
// Instantiate a vector with 10 elements, each initialized to 90
std::vector vecArrayWithTenInitializedElements (10, 90);
// Instantiate one vector and initialize it to the contents of another
std::vector vecArrayCopy (vecArrayWithTenInitializedElements);
// Instantiate a vector to 5 elements taken from another
std::vector vecSomeElementsCopied(v.begin(), v.begin () + 5);
return 0;
}