// // Example 6.14. Program to play a guessing game. The // computer selects a random number in the range 0 - 99 // and the user repeatedly tries to guess the number. // #include "guesgame.h" int main(void) { GuessingGame game; game.PlayGame(); return 0; }