what do you mean by seekg and seekp
what do you mean by seekg and seekp
Collapse
X
-
Tags: None
-
seekg goes with ifstream and/or fstream objects to move about within the file for reading.
seekp goes with ofstream and/or fstream objects to move about within the file for writing.
For example, if you wanted to read the 4th character in a file, you could use seekg to move to that position and then extract that character.
Comment