I do as ben defined but i had errors i copied ben code i still have alot of error i fixed it i dont know is it becz of c++ new version
#include<iostream>
#include<string>
using namespace std;
//entry point for over appliction
int main()
{
void PrintIntro();
{
constexpr int World_Length = 9;
cout << "Welcome to bulls and cows\n";
cout << "Can you guess the" << World_Length;
cout << " the letter isogram im thinking of ?\n";
cout << endl;
}
string GetGuessAndPrintBack(); {
//get a guess from the player
cout << "Enter your Guess:";
string Guess = "";
getline(cin, Guess);
//Repeat the guess back to them
cout << "Your Guess was:" << Guess << endl;
cout << endl;
}
}