#include using namespace std;int main(int argc, char** argv){ vector intVector(10, 100); // creates a vector of 10 ints with value 100 return (0);}