vector of given size c++ code example
Example 1: how to create a vector in c++
#include <vector>
using namespace std;
int main()
{
vector<int> vect;
vect.push_back(10);
for (int x : vect)
cout << x << " ";
return 0;
}
Example 2: c++ vector size
#include <vector>
int main() {
std::vector<int> myVector = { 666, 1337, 420 };
size_t size = myVector.size();
myVector.push_back(399);
size = myVector.size();
}
Example 3: finding the size of vector in c++
vector<int> a;
cout <<" " << a.size();
Example 4: how to initialize vector
vector<int> vect{ 10, 20, 30 };
Example 5: find vector size in c++
vectorName.size();