Passing vector by reference

0 votes

Using standard C arrays, I would carry out the following:

void do_something(int el, int **arr)
{
   *arr[0] = el;
   // do something else
}

Now, I want to replace standard array with vector, and achieve the same results here:

void do_something(int el, std::vector<int> **arr)
{
   *arr.push_front(el); // this is what the function above does
}

However, the message reads, "Expression must have class type." 

How can I do this correctly?

Aug 23, 2022 in C++ by Nicholas
• 7,760 points

edited Mar 4 44 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP