// create a vector with 20 integer elements std::vector arr(20); for(int x = 0; x < 20; ++x) arr[x] = x;