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 259 views
1 answer 154 views
154 views asked Dec 2, 2022 by avibootz
1 answer 227 views
2 answers 285 views
1 answer 216 views
1 answer 237 views
...