1 #include <iostream> 2 #include <sstream> 3 #include <string> 4 using namespace std; 5 6 int main() 7 { 8 string text("Programming is fun"); 9 stringstream ss(text); 10 11 cout << "The words in the text are " << endl; 12 string word; 13 while (!ss.eof()) 14 { 15 ss >> word; 16 cout << word << endl; 17 } 18 19 return 0; 20 }