Vector C++ Tutorial

#include 
int main ()
{
    using namespace std;
    // Instantiate an object using the default constructor
    vector  vecBool1;
    // A vector of 10 elements with value true (default: false)
    vector  vecBool2 (10, true);
    // Instantiate one object as a copy of another
    vector  vecBool2Copy (vecBool2);
    return 0;
}