Answers for "convert std vector to array"

C++
0

convert std vector to array

std::vector<double> v;
double* a = &v[0];
Posted by: Guest on August-21-2021

Browse Popular Code Answers by Language