Hi
From this
bool AskToPlayAgain() {
cout << "Would you like to play again? " << endl;
string Response{ “” };
getline(cin, Response);
return (Response[0] == ‘y’) || (Response[0] == ‘Y’);
}
How does the computer knows it’s returning a False or true statement?
Is bool defaulting to return true (1) if the first Response char is set to my response cases?