Constructing Vectors std::vector v; empty vector std::vector v(10); vector with 10 default strings std::vector v(10, '-'); vector with 10 '-' elements