std::basic_istream::gcount

1
std::streamsize gcount() const;

Returns the number of characters extracted by the last unformatted input operation.

The following member functions of basic_istream change the value of subsequent gcount() calls:

The following functions set gcount() to zero:

Parameters

(none).

Return value

The number of characters extracted by the last unformatted input operation.

Example

1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
#include <sstream>
  
int main()
{
    char x[20];
    std::istringstream stream("Hello World");
  
    stream.read(x, sizeof x);
    std::cout << "Characters extracted: " << stream.gcount();
}

Output:

1
Characters extracted: 11
doc_CPP
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.