12345678
std::ofstream fout("hello.txt"); // Displayed to the console std::cout << "Hello."; // Displayed to the file fout << "Hello."; fout.close();