streampos

Holds the current position of the buffer pointer or file pointer.

typedef fpos<mbstate_t> streampos;

Remarks

The type is a synonym for fpos<mbstate_t>.

Example

// ios_streampos.cpp
// compile with: /EHsc
#include <iostream>
#include <fstream>

int main( ) 
{
   using namespace std;

   ofstream x( "iostream.txt" );
   x << "testing";
   streampos y = x.tellp( );
   cout << y << endl;
}
7

Requirements

Header: <ios>

Namespace: std

See Also

Reference

fpos Class

iostream Programming

iostreams Conventions

Other Resources

fpos Members

<ios> Members