In C++, seekg(), seekp(), tellg(), and tellp() are functions that allow us to perform random access on a binary file.seekg() and seekp() are used to set the position of the read/write pointer in a file. seekg() sets the position of the input file pointer (ifstream), while seekp() sets the position of the output file pointer (ofstream). These functions take an offset value and a seek direction as parameters. The seek direction can be one of three values:ios::beg...
Showing posts with label and tellp() functions. Show all posts
Showing posts with label and tellp() functions. Show all posts