you can do it the following way using the string class. Look at my code snippet
If you want to work with plain old character arrays then strtok() would be the way to go.
Main Topics
Browse All TopicsHi,
I'm trying to code a program that take in a string and break the string into words. Then, insert the words into a vector<string>.
Output:
Enter words:
apple orange pear
apple -
orange -
pear -
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
The code of trinitrotoluene posted in #25735533 should do it.
I took your initial code and
- removed the outer while (!cin.eof())
cin never will have eof and the getline(cin, input) already will catch all the words.
- changed the inner while loop to
// at end of field stream the (field >> f1) would return NULL == FALSE
while ((field>>f1))
{
v.push_back(f1);
}
what is the same trinitrotoluene has suggested.
That's all.
Business Accounts
Answer for Membership
by: JimUPosted on 2009-11-03 at 16:38:58ID: 25735420
So what is the problem?
One issue I see with your code is that you need to check for cin.eof() after the getline() call.