function
std::ends
<ostream>
ostream& ends ( ostream& os );
Insert null character
Inserts a
null character (
'\0').
Parameters
- os
- Output stream on which the insertion is performed.
Because this function is designed as a manipulator, it can be used directly with no arguments in conjunction with the insertion operator (<<) on output streams.
Return Value
The same stream object on which the operation was performed (parameter
os).
Basic template declaration
1 2
|
template <class charT, class traits>
basic_ostream<charT,traits>& ends ( basic_ostream<charT,traits>& os );
|
See also
- endl
- Insert newline and flush (function)
- ostream::operator<<
- Insert data with format (public member function)