cplusplus.com cplusplus.com
cplusplus.com   C++ : Reference : IOstream Library : manipulators : ends
- -
C++
Information
Documentation
Reference
Articles
Sourcecode
Forum
Reference
C Library
IOstream Library
Strings library
STL Containers
STL Algorithms
IOstream Library
manipulators
classes:
· filebuf
· fstream
· ifstream
· ios
· iostream
· ios_base
· istream
· istringstream
· ofstream
· ostream
· ostringstream
· streambuf
· stringbuf
· stringstream
objects:
· cerr
· cin
· clog
· cout
types:
· fpos
· streamoff
· streampos
· streamsize
manipulators
· boolalpha
· dec
· endl
· ends
· fixed
· flush
· hex
· internal
· left
· noboolalpha
· noshowbase
· noshowpoint
· noshowpos
· noskipws
· nounitbuf
· nouppercase
· oct
· resetiosflags
· right
· scientific
· setbase
· setfill
· setiosflags
· setprecision
· setw
· showbase
· showpoint
· showpos
· skipws
· unitbuf
· uppercase
· ws

-

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)
ostream::operator<< Insert data with format (public member function)

© The C++ Resources Network, 2000-2007 - All rights reserved
Spotted an error? - contact us