![[Dept of Engineering]](http://www.eng.cam.ac.uk/images/house_style/engban-s.gif)
Next: Output of User-Defined types
Up: Input/Output
Previous: Formatting
Iterators can be used on streams, providing an elegant
way to integrate I/O with container classes. You've seen them
already in the Standard Library section.
ostream_iterator<string> oo (cout);
int main()
*oo = "Hello";
++oo;
*oo = "World";
Tim Love
2001-07-05