#include int main (){ std::vector v; // Instantiate a vector with 10 elements (it can grow larger) std::vector v1 (10); return 0;}