problem facing while using ostream_iterator

A

alzforu

The code in which i m facing the problem is:
//file stream.cc

#include <vector>
#include <algorithm>
#include <iostream>

using namespace std;


int main ()
{
vector<int> V;
string from;
V.push_back(0);
V.push_back(1);
V.push_back(2);
copy(V.begin(), V.end(), std::eek:stream_iterator<int>(cout, " "));
// Output: 0 1 2
return 0;
}

// compiler given error:
//stream.cc: In function `int main()':
stream.cc:38: `ostream_iterator' undeclared in namespace `std' (line
number 38 is where m calling copy() algorithm).

I have made the search in /usr/include for ostream_iterator but i
have'nt find it.
stream.cc:38: syntax error before `>' token
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top