Tagged Questions
1
vote
3answers
327 views
C++ compilation error using string and istream_iterator
When trying to compile the following:
#include <string>
#include <iterator>
#include <iostream>
using namespace std;
int main() {
string s(istream_iterator<char>(cin), ...