Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,965 questions

51,907 answers

573 users

How to add a range of elements of a vector to another vector at a specific position in C++

1 Answer

0 votes
#include <iostream>
#include <vector>

int main() {
    std::vector<int> source = {10, 20, 30, 40, 50, 60, 70};
    std::vector<int> target = {1, 2, 3, 4};

    // Insert elements from index 2 to 4 (30, 40, 50) into target at position 1
    target.insert(target.begin() + 1, source.begin() + 2, source.begin() + 5);

    for (int val : target) {
        std::cout << val << " ";
    }
}



/*
run:

1 30 40 50 2 3 4 

*/

 



answered Oct 18, 2025 by avibootz
...