// the entry point for our application
int main()
{
do {
PrintIntro();
PlayGame();
} while (AskToPlayAgain());
return 0; // exit the application
}
1 Like
// the entry point for our application
int main()
{
do {
PrintIntro();
PlayGame();
} while (AskToPlayAgain());
return 0; // exit the application
}