Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9198619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T22:19:42+00:00 2026-06-17T22:19:42+00:00

Currently when I have to use vector.push_back() multiple times. The code I’m currently using

  • 0

Currently when I have to use vector.push_back() multiple times.

The code I’m currently using is

std::vector<int> TestVector;
TestVector.push_back(2);
TestVector.push_back(5);
TestVector.push_back(8);
TestVector.push_back(11);
TestVector.push_back(14);

Is there a way to only use vector.push_back() once and just pass multiple values into the vector?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T22:19:44+00:00Added an answer on June 17, 2026 at 10:19 pm

    Try pass array to vector:

    int arr[] = {2,5,8,11,14};
    std::vector<int> TestVector(arr, arr+5);
    

    You could always call std::vector::assign to assign array to vector, call std::vector::insert to add multiple arrays.

    If you use C++11, you can try:

    std::vector<int> v{2,5,8,11,14};
    

    Or

    std::vector<int> v = {2,5,8,11,14};
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have a single web server hosting multiple WordPress sites which use W3TC.
I have a vector< Object > myvec which I use in my code to
We currently have in production SQL Server 2005 and we use it's full text
I currently have a MySQL database which I was hoping to use to store
I currently have a Gridview , And I want to use client-side validation to
We currently have a number of desktop applications (PowerBuilder, Winforms, WPF) that make use
Just a quick question. I don't use sitefinity and I don't currently have access
Currently we have an application who use spring who support mysql. Some people prefer
Currently I have a web application where a user can use dropdown lists to
Currently I have my private key saved in a file, private.key, and I use

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.