Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. int main()
  2. {
  3. fstream xyz("file.txt",fstream::ate|fstream::in|fstream::out);
  4. xyz.seekp(0,fstream::beg);
  5. xyz << "this is ";
  6. xyz.close();
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement