|
ostream::tellppublic member function
streampos tellp ( ); Get position of put pointer Returns the absolute position of the put pointer.The put pointer determines the location in the output sequence where the next output operation is going to take place. ParametersnoneReturn ValueAn integral value of type streampos with the number of characters between the beginning of the output sequence and the current position.Failure is indicated by returning a value of -1. Example
In this example, tellp is used to get the position of the put pointer after the writing operation. The pointer is then moved back 7 characters to modify the file at that position, so the final content of the file shall be: This is a sample Basic template member declaration(basic_ostream<charT,traits>)
See also
|