Answers for "a function that convert a vector of chars to char array"

C++
-1

vector to char array c++

std::vector<int> vec {1, 2, 3};
const int* = vec.data();
Posted by: Guest on March-05-2021

Code answers related to "a function that convert a vector of chars to char array"

Browse Popular Code Answers by Language