सी ++ फ़ाइल हैंडलिंग में, टेलप () फ़ंक्शन का उपयोग आउटपुट स्ट्रीम के साथ किया जाता है, और स्ट्रीम में पॉइंटर की वर्तमान पुट स्थिति देता है। यह एक पूर्णांक डेटा प्रकार देता है, जो स्ट्रीम पॉइंटर की वर्तमान स्थिति का प्रतिनिधित्व करता है।
tellp() method takes no parameter. It is written as: pos_type tellp();
एल्गोरिदम
Begin. Create an object newfile against the class fstream. Call open() method to open a file “tpoint.txt” to perform write operation using object newfile. Insert data into the file object newfile. Call the tellp() method to print the present position of the pointer in the file object. Call close() method to close the file object. End.
उदाहरण
#include <iostream> #include <iostream> #include <fstream> using namespace std; int main() { fstream newfile; newfile.open("tpoint.txt", ios::out); //open a file to perform write operation using file object newfile << "Tutorials Point"; //inserting data cout << "The present position of the pointer in the file: " << newfile.tellp() << endl; //position of the pointer in the file object newfile.close(); //close file object. }
आउटपुट
The present position of the pointer in the file: 15