Vector C++ Tutorial

#include 
#include 
using namespace std;
int main(int argc, char** argv)
{
  vector stringVector(10, "hello");
  return (0);
}