The
std::basic_istream::gcount() is used to count the characters in the given string. It returns the number of characters extracted by the last unformatted input operation. The unformatted input operation is returned by these function:
get(),
getline(),
ignore(), peek(),
read(), etc.
Header File:
<iostream>
Syntax:
streamsize gcount() const
Parameter: This method doesn't accepts any parameter.
Return Value: It returns the number of characters extracted by the last unformatted input operation.
Below is the program to illustrate
std::basic_istream::gcount():
Program 1:
Output:
The count of characters in the string is 13
References: https://cplusplus.com/reference/istream/basic_istream/gcount/