what is the difference b/n seekg() and seekp(), tellp() and tellg() | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what is the difference b/n seekg() and seekp(), tellp() and tellg()

i know that seekg() is for get pointer and seekp() is for put pointer and the same for tellg() and tellp(). but in practice i didn't get the difference. both seeks do the same and both tells do the same.

13th Jun 2018, 8:43 AM
Kirubel Adamu
Kirubel Adamu - avatar
1 Answer
+ 1
seekg()  is used to move the get pointer to a desired location seekp() is used to move the put pointer to a desired location tellp() is used to know where the put pointer is in a file. tellg() is used to know where the get pointer is in a file.
3rd Jul 2018, 7:02 AM
Ajay Parmar
Ajay Parmar - avatar