G
Gorc
Is there any runtime diagnostic required by C++ standard in
std:fstream ofs("foo.bar");
ofs.seekp(-1,ios::beg);
ofs << "Gosh";
or is the result implementation defined as with writng past eof?
gorc
std:fstream ofs("foo.bar");
ofs.seekp(-1,ios::beg);
ofs << "Gosh";
or is the result implementation defined as with writng past eof?
gorc