Try this:
out << myVector.at(i) << '\n'; // note: single quotes
Or this:
out << myVector.at(i) <<endl; // should also work
Try this:
out << myVector.at(i) << '\n'; // note: single quotes
Or this:
out << myVector.at(i) <<endl; // should also work
locke (17th March 2010)
Bookmarks