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

51,780 answers

573 users

How to print a vector with overloading the << operator in C++

1 Answer

0 votes
#include <iostream>
#include <vector>
#include <algorithm>
 
std::ostream& operator<<(std::ostream& os, const std::vector<char> &v) {
    int size = v.size();
    for (int i = 0; i < size; i++) {
        os << v.at(i) << " ";
    }
    return os;
}
  
int main()
{
    std::vector<char> v = {'a', 'b', 'c', 'd', 'e'};
    
    std::cout << v;
  
    return 0;
}
 
 
 
 
 
/*
run:
 
a b c d e 
 
*/

 



answered Feb 19, 2021 by avibootz

Related questions

1 answer 232 views
1 answer 134 views
134 views asked Dec 2, 2022 by avibootz
1 answer 205 views
2 answers 255 views
1 answer 190 views
1 answer 214 views
...