// Secret.C // (c) Burt Rosenberg 1996 // This program introduces the while loop and the char object #include void main() { char c ; cout << "Guess the secret letter..." << endl ; // loop until the secret letter is guessed c = ' ' ; while( c!='v' ) { cout << "Guess a letter: " ; cin >> c ; } cout << "Happy Valentine's Day!" << endl; }