1.3a — A first look at cout, cin, endl, the std namespace, and using statements « Learn C++
std::cout As noted in previous sections, the std::cout object (in the iostream library) can be used to output text to the console. As a reminder, here’s our Hello world ... You might be surprised at the result: Hi!My name is Alex. std::endl If we want to ...