#include <fstream> int main () { std::ofstream ofs("test.txt", std::ofstream::trunc); ofs << "lorem ipsum"; ofs.close(); }