Following are different ways to create and initialize a vector in C++ STL
Initializing by pushing values one by one :
// CPP program to create an empty vector // and push values one by one. #include <bits/stdc++.h> using namespace std; int main() { // Create an empty vector vector<int> vect; vect.push_back(10); vect.push_back(20); vect.push_back(30); for (int x : vect) cout << x << " "; return 0; } |
Output:
10 20 30
Specifying size and initializing all values :
// CPP program to create an empty vector // and push values one by one. #include <bits/stdc++.h> using namespace std; int main() { int n = 3; // Create a vector of size n with // all values as 10. vector<int> vect(n, 10); for (int x : vect) cout << x << " "; return 0; } |
Output:
10 10 10
Initializing like arrays :
// CPP program to initialize a vector like // an array. #include <bits/stdc++.h> using namespace std; int main() { vector<int> vect{ 10, 20, 30 }; for (int x : vect) cout << x << " "; return 0; } |
Output:
10 20 30
Initializing from an array :
// CPP program to initialize a vector from // an array. #include <bits/stdc++.h> using namespace std; int main() { int arr[] = { 10, 20, 30 }; int n = sizeof(arr) / sizeof(arr[0]); vector<int> vect(arr, arr + n); for (int x : vect) cout << x << " "; return 0; } |
Output:
10 20 30
Initializing from another vector :
// CPP program to initialize a vector from // another vector. #include <bits/stdc++.h> using namespace std; int main() { vector<int> vect1{ 10, 20, 30 }; vector<int> vect2(vect1.begin(), vect1.end()); for (int x : vect2) cout << x << " "; return 0; } |
Output:
10 20 30
Initializing all elements with a particular value :
#include <bits/stdc++.h> using namespace std; int main() { vector<int> vect1(10); int value = 5; fill(vect1.begin(), vect1.end(), value); for (int x : vect1) cout << x << " "; } |
Output:
5 5 5 5 5 5 5 5 5 5
This article is contributed by Kartik. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Rated as one of the most sought after skills in the industry, own the basics of coding with our C++ STL Course and master the very concepts by intense problem-solving.
Recommended Posts:
- Different ways to initialize a variable in C/C++
- vector::front() and vector::back() in C++ STL
- vector::push_back() and vector::pop_back() in C++ STL
- vector::operator= and vector::operator[ ] in C++ STL
- vector::crend() & vector::crbegin() with example
- vector :: cbegin() and vector :: cend() in C++ STL
- How to flatten a Vector of Vectors or 2D Vector in C++
- vector::empty() and vector::size() in C++ STL
- vector::begin() and vector::end() in C++ STL
- vector::at() and vector::swap() in C++ STL
- How to initialize Array of objects with parameterized constructors in C++
- Ways to copy a vector in C++
- Different ways to delete elements in std::map (erase() and clear())
- Different ways to declare variable as constant in C and C++
- Preventing Object Copy in C++ (3 Different Ways)
- Print system time in C++ (3 different ways)
- Different ways to use Const with Reference to a Pointer in C++
- Array of Strings in C++ (5 Different Ways to Create)
- Sorting 2D Vector in C++ | Set 2 (In descending order by row and column)
- Common Subtleties in Vector STLs

