int main ()
{
cout << "*********************************************" << endl;
cout << "* You will be prompted to enter a string of *" << endl;
cout << "* words. The string will be converted into *" << endl;
cout << "* Pig Latin and the results displayed. *" << endl;
cout << "* Enter as many strings as you would like. *" << endl;
cout << "*********************************************" << endl << endl;
cout << "Enter a group of words or ENTER to quit: ";
cin.getline(Sentence, 100, '\n');
cout <<endl;
while (Sentence[0] !='\0')
{
cout << "Original Words: " << Sentence << endl;
cout << "New Words: ";
pigLatinString();
cout << endl;
cout << "Enter a group of words or ENTER to quit: ";
cin.getline(Sentence, 100, '\n');
}
return 0;
}