I\'m making a C++ wrapper for a piece of C code that returns a large array, and so I\'ve tried to return the data in a vector.
vector
Now t
How about using vector.reserve() to only allocate the storage but not initialize it?