I want to pass a vector in as the second argument to execvp. Is it possible?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Not directly; you'd need to represent the vector as a NULL-terminated array of string pointers somehow. If it's a vector of strings, that is straightforward to do; if it's some other kind of data you would have to figure how to encode it as strings. |
|||||
|
|
|
Yes, it can be done pretty cleanly by taking advantage of the internal array that vectors use. This will work, since the standard guarantees its elements are stored contiguously (see http://stackoverflow.com/a/2923290/383983)
|
|||
|
|