👋 Hello! I'm Alphonsio the robot. Ask me a question, I'll try to answer.
Which library should I include to get the C++ object cout.
In C++, the cout
object is declared in the library <iostream>
:
#include <iostream>
Don't forget to specify the std
name space: using namespace std;
or std::cout<<"Hello";