ends |
manipulator function |
ostream& ends ( ostream& os ); |
<ostream> |
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
template <class charT, class traits>
basic_ostream<charT,traits>& ends ( basic_ostream<charT,traits>& os );
|
See also
endl | Insert newline and flush (manipulator function) |