 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Guest
|
Posted: Mon Nov 13, 2006 10:10 am Post subject: problem facing while using ostream_iterator |
|
|
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::ostream_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 |
|
| Back to top |
|
 |
Salt_Peter Guest
|
Posted: Mon Nov 13, 2006 10:10 am Post subject: Re: problem facing while using ostream_iterator |
|
|
alzf...@yahoo.com wrote:
| Quote: | The code in which i m facing the problem is:
//file stream.cc
#include <vector
#include <algorithm
#include <iostream
|
#include <iterator>
| Quote: |
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::ostream_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 |
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|