История изменений
Исправление MOPKOBKA, (текущая версия) :
#include <iostream>
#include <fstream>
int main(int argc, char **argv) {
std::ofstream file("file.txt");
auto &fout = argc > 1 ? file : std::cout;
fout << "Hello";
std::cout << " World!";
fout << std::endl;
}
Исходная версия MOPKOBKA, :
#include <iostream>
#include <fstream>
int main(int argc, char **argv) {
std::ofstream file("file.txt");
auto &fout = argc > 1 ? file : std::cout;
fout << "Hello";
std::cout << " World!";
fout << std::endl;
}