Tagged Questions
2
votes
4answers
257 views
operator<< overloading ostream
In order to use cout as such : std::cout << myObject, why do I have to pass an ostream object? I thought that was an implicit parameter.
ostream &operator<<(ostream &out, const ...
0
votes
2answers
141 views
How do I overload the ostream << operator with an array?
I'm having trouble overloading my << operator to print the contents of an array of unknown size. I searched for a solution, but the only one I found would require me to put all of my private ...