One method would be to use the array to initialize the vector
static const int arr[] = {16,2,77,29}; vector<int> vec (arr, arr + sizeof(arr) / sizeof(arr[0]) );
Related Posts:
- How do I erase an element from std::vector<> by index?
- Is it more efficient to copy a vector by reserving and copying, or by creating and swapping? [duplicate]
- How do I reverse a C++ vector?
- What’s the most efficient way to erase duplicates and sort a vector?
- Best way to extract a subvector from a vector?
- Appending a vector to a vector
- C++ Erase vector element by value rather than by position?
- Why can’t I make a vector of references?
- Displaying contents of a vector container in C++
- How to implement 2D vector array?
- Vector of Vectors to create matrix
- How to find out if an item is present in a std::vector?
- How do I print out the contents of a vector?
- check if a std::vector contains a certain object?
- How to navigate through a vector using iterators? (C++)
- C++ for each, pulling from vector elements
- Debug assertion failed. C++ vector subscript out of range
- A proper way to create a matrix in c++
- No matching member function for call to ‘push_back’ error
- Pass a vector by reference C++
- Why there is no pop_front method in C++ std::vector?
- Initializing a two dimensional std::vector
- C++ – No matching member function for call to ‘push_back’
- Debug assertion failed. C++ vector subscript out of range
- Vector is not a Template?
- Displaying a vector of strings in C++
- ‘vector’ in namespace ‘std’ does not have a template type
- push_back vs emplace_back
- C++ error: Undefined symbols for architecture x86_64
- Vector of structs initialization
- Converting a vector
to string - vector
::size_type in C++ - Parsing a comma-delimited std::string
- How to ensure that a std::map is ordered?
- Why use a new call with a C++ ‘vector’?
- Why doesn’t std::vector::push_front() exist?
- C++ delete vector, objects, free memory
- How to iterate over a vector?
- How to access the contents of a vector from a pointer to the vector in C++?
- Insert object at index of vector c++
- How to convert vector to array
- push_back vs emplace_back
- No operator << matches these operands
- Initialize empty vector in structure – c++
- splitting a string into an array in C++ without using vector
- Remove spaces from std::string in C++
- What is the difference between const_iterator and non-const iterator in the C++ STL?
- Remove spaces from std::string in C++
- How to check that an element is in a std::set?
- How to sum up elements of a C++ vector?
- Implementation of Vector in C++
- Determine if map contains a value for a key?
- How to initialize a vector of pointers
- how to initialize an empty integer array in c++
- Correct way to work with vector of arrays
- C++ – Too Many Initializers for Arrays
- C++ error: double free or corruption (fasttop)
- How to get current time in milliseconds?
- Use the auto keyword in C++ STL
- error C2106: ‘=’ : left operand must be l-value
- I get this error: “glibc detected”
- std::string length() and size() member functions
- How to create a vector of class objects in C++?
- “vector” was not declared in this scope
- sorting in std::map where key is a std::string
- How to do std::string indexof in C++ that returns index of matching string?
- too many initializers for ‘int [0]’ c++
- Getting a bunch of crosses initialization error
- Vector declaration “expected parameter declarator”
- Why is this vector iterator not incrementable?
- Initializing pointers in C++
- C++ equivalent of StringBuffer/StringBuilder?
- What is the size of sizeof(vector)? C++
- List iterator not dereferencable?
- c++ vector bubble sort
- clearing a vector of pointers [duplicate]
- “Cannot allocate an object of abstract type” error
- C++ float array initialization
- Pause Console in C++ program
- Why the switch statement cannot be applied on strings?
- 1.#QNAN error C++
- What is the array form of ‘delete’?
- Error: Expression must have integral or unscoped enum type
- Use new operator to initialise an array
- Remove secure warnings (_CRT_SECURE_NO_WARNINGS) from projects by default in Visual Studio
- C ++ error: a expected initializer before [function name]
- invalid new-expression of abstract class type
- Random number c++ in some range
- Sorting Linked List C++ with pointers
- Get Unix timestamp with C++
- Class prototyping
- Program received signal SIGSEGV, Segmentation fault
- Integer to hex string in C++
- Comparison of C++ unit test frameworks
- c++ error c2015: too many characters in constant
- Splitting a C++ std::string using tokens, e.g. “;”
- variable or field declared void
- Invalid conversion from ‘char’ to ‘const char *’
- How do I deal with “signed/unsigned mismatch” warnings (C4018)?
- heap corruption detected | C++