std::cout << "COME AT ME BRO!\n";
cout
определено в std
пространстве имен.Итак, вам нужно ставить std::
перед каждым cout
.У вас как всегда есть варианты -
#include <iostream>
using namespace std ; // Do this if you need include everything defined in the namespace
using std::cout ; // If the program just uses cout of std namespace
int main()
{
cout << "COME AT ME BRO!\n"; // Now you are free from keeping std:: before cout
return 0;
}