Std::cout <<, is not working for me

Observed: When i run this piece of code it isn’t running properly, I have copied the code from the lecture yet I do not get the output text.

Desired: The code should display the text " Welcome to Bulls and Cows";

Step to reproduce: #include

int main()
{
std::cout << “Welcome to Bulls and Cows\n”;
return 0;
}

Relevant Information: I have checked the Error pane for any errors but there are none.

appreciate if any one could assist on this.

I guess you need to re-build the project again, if not, it shows the one is not correct.

1 Like

Thank you so much. I was not rebuilding it when running it.