/* In a classified ad, all vowels except the first one are removed. This program takes a line and does that. e.g. This house is good. becomes This hos is god. */ #include #include #include #include #include #include #include #include #include #include int main() { clrscr(); apstring tempword; cout<<"Enter a word to output classified ad form:"; cin>>tempword; //get the word cin.ignore(80,'\n');//ignore the rest of the line apvector word(tempword.length()); //make an array to fill reqmt. for(int i=0; i