//Practice with the extraction operator versus getline. #include using namespace std; int main() { char word[40]; char word1[20]; char word2[20]; char word3[20]; cout << "Please enter a line of text with 3 words in it " << endl; cin >> word1 >> word2 >> word3; cout << " The words are: word1 - " << word1 << ", word2 - " << word2 << ", word3 - " << word3 << endl; cin.ignore(); // lets read an entire line of text cout << " Please enter a line of text - no more than 39 characters and spaces"<