1: //Hello3.cpp 2: 3: #include <iostream> 4: 5: int main() 6: { 7: //In this case we explicitly qualify each usage: 8: std::cout << "\nHello, world!" << std::endl; 9: }