C/C++
stl_it.asc
Associated article: STL Iterators
Tags: Database C/C++
_STL ITERATORS_
by Dan Zigmond
Listing One
#include<string.h>
#include<vector.h>
#include<iostream.h>
void main()
{
if (argc != 1) throw("usage: wcn");
vector< string, less< string > > words;
...


