Skip to content

Instantly share code, notes, and snippets.

@aquibdoescalculus
aquibdoescalculus / Problem
Created June 25, 2018 12:37
My confusion
void playGame() {
//loop for number of turnes
constexpr int Turns = 7;
for (int i = 1; i <= Turns; i++)
{
getGuess(); // <-----In the actual code why is it NOT CALLING for THIS function?
//print the guess
string Guess = getGuess();
cout << "Your Guess was :" << Guess << endl;
cout << endl;