I would like to be able to convert between std::vector and its underlying C array int* without explicitly copying the data.
Does std::vector provide access to the u
In c++11, you can use vector::data() to get C array pointer.