Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. fstream obj(filename , ios::in);
  2. obj.seekp(7);
  3.  
  4. fstream obj(filename , ios::in);
  5. obj.seekg(7);
  6.  
  7. basic_ostream<charT,traits>& seekp(pos_type pos);
  8.  
  9. pos_type seekpos(pos_type sp,
  10. ios_base::openmode which = ios_base::in | ios_base::out);
  11.  
  12. basic_istream<charT,traits>& seekg(pos_type pos);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement