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,895 questions

51,826 answers

573 users

How to fill a vector with values in C++

3 Answers

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

// fill(ForwardIterator first, ForwardIterator last, const T& val);

void printVector(std::vector<int> const &v) {
    for (auto const &n: v) {
        std::cout << n << " ";
    }
}

int main () 
{
    std::vector<int> vec(10);  
    
    printVector(vec);
    std::cout << '\n';

    std::fill(vec.begin(), vec.end(), -1); 
    
    printVector(vec);
    std::cout << '\n';
}

 
 
 
 
/*
run:
 
0 0 0 0 0 0 0 0 0 0 
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 
 
*/

 



answered Nov 20, 2022 by avibootz
edited Nov 20, 2022 by avibootz
0 votes
#include <iostream>     
#include <vector>   

// fill(ForwardIterator first, ForwardIterator last, const T& val);

void printVector(std::vector<int> const &v) {
    for (auto const &n: v) {
        std::cout << n << " ";
    }
}

int main () 
{
    std::vector<int> vec(10);  
    
    printVector(vec);
    std::cout << '\n';

    std::fill(vec.begin(), vec.begin() + 3, -1); 
    
    printVector(vec);
    std::cout << '\n';
}

 
 
 
 
/*
run:
 
0 0 0 0 0 0 0 0 0 0 
-1 -1 -1 0 0 0 0 0 0 0 
 
*/

 



answered Nov 20, 2022 by avibootz
0 votes
#include <iostream>     
#include <vector>   

// fill(ForwardIterator first, ForwardIterator last, const T& val);

void printVector(std::vector<int> const &v) {
    for (auto const &n: v) {
        std::cout << n << " ";
    }
}

int main () 
{
    std::vector<int> vec(10);  
    
    printVector(vec);
    std::cout << '\n';

    std::fill(vec.begin() + 3, vec.end() - 2, -1); 
    
    printVector(vec);
    std::cout << '\n';
}

 
 
 
 
/*
run:
 
0 0 0 0 0 0 0 0 0 0 
0 0 0 -1 -1 -1 -1 -1 0 0 
 
*/

 



answered Nov 20, 2022 by avibootz

Related questions

1 answer 223 views
1 answer 135 views
2 answers 91 views
1 answer 79 views
2 answers 179 views
2 answers 208 views
...