so I am doing the bulls and cows section however when I run and build it works perfectly however it does not stay up like it runs works fine but as soon as the windows pops up with the bulls and cows stuff it instantly closes prohibiting me from actually playing the game?
want to know if I’m doing something wrong
include “stdafx.h”
include
using namespace std;
int main()
{
constexpr int WORLD_LENGTH = 5;
cout << "welcome to bulls and cows, a fun word game" << endl;
cout << "can you guess the" <<WORLD_LENGTH;
cout << "letter isogram I'm thinking of?" endl;
return 0;
}