a string array being passed to function alias arg

How do we handle a string array being passed to function alias argument. (not simply just argument but its alias) ?
Last edited on
What is a function alias argument? Do you mean a reference parameter?
1
2
3
void function (string*& a_reference_to_a_string_pointer)
{
 ...


Also, because this is C++, we don't use a string array. We use a vector of strig instead: vector<string> vector_of_string;
Topic archived. No new replies allowed.