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 increase the size of a vector in C++

1 Answer

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

void print(std::vector<double> vec) {
    for (std::size_t i(0), len(vec.size()); i != len; i++) {
        std::cout << vec[i] << " ";
    }
    std::cout << "\n";
}

int main() {
    std::vector<double> vec;

    // push_back add values to the end of the vector, 
    // and it will automatically resize the vector
    
    vec.push_back(12);
    vec.push_back(3);
    vec.push_back(19);
    vec.push_back(0);

    print(vec);
    
    vec.push_back(600);
    vec.push_back(3.14);
    vec.push_back(4000);
    
    print(vec);
}
  
  
/*
run:
   
12 3 19 0 
12 3 19 0 600 3.14 4000 
   
*/

 



answered Mar 13, 2025 by avibootz

Related questions

2 answers 228 views
1 answer 161 views
1 answer 204 views
1 answer 185 views
1 answer 138 views
...