Tagged Questions

13
votes
3answers
3k views

Converting between C++ std::vector and C array without copying

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 underlying C array? I am looking ...
8
votes
3answers
429 views

std::vector alternative for C

I wonder if there is an alternative for the std::vector in C? I found this implementation but it seems to contain some issues with memory reallocation.
2
votes
5answers
546 views

std::vector<std::string> to char* array

I have a std::vector<std::string> that I need to use for a C function's argument that reads char* foo. I have seen how to convert a std::string to char*. As a newcomer to C++, I'm trying to ...
1
vote
3answers
209 views

How to use a std::vector in a C function

A C function expects an array of buffers to be in scope at runtime. e.g. char values[x][y] The C function will populate the buffers I would like to use a dynamic array so I don't have to hard ...
0
votes
2answers
319 views

“glibc free(): invalid next size(fast)” on vector.push_back?

When I run my program it will occasionally crash and give me this error: "glibc detected /pathtoexecutable: free(): invalid next size (fast)" The backtrace leads to a member function that just calls ...