|
Description
For Greggers and friends. The code replaces the word MEOW.
#include <fstream> using namespace std; int main() { ofstream out("file.txt"); out<<"RAWR"<<endl; out<<"MEOW"<<endl; out<<"RAWR"<<endl; out.seekp(6); out.write("", 4); out.close(); return 0; } |
|