void playAgain()
{
char again;
cout << "Do you want to play again (y/n)?: ";
cin >> again;
if (again == 'y')
chooseOption();
else if (again == 'n')
cout << endl << "Thanks for playing Connect Four, the game of the clever people!";
else
cout << "Invalid Choice" << endl;
playAgain();
return;
}
when n is entered, it loops itself back to the begining again.
i need it to terminate when n is entered, but cant work out how to do it.