Standard C++ Library Reference ISO/IEC (VERSION3)
template<class Tr>
basic_ostream<char, Tr>&
operator<<(basic_ostream<char, Tr>& ostr,
signed char ch);
returns ostr << (char)ch.
The template function:
template<class Tr>
basic_ostream<char, Tr>&
operator<<(basic_ostream<char, Tr>& ostr,
const unsigned char *str);
returns ostr << (const char *)str.
The template function:
template<class Tr>
basic_ostream<char, Tr>&
operator<<(basic_ostream<char, Tr>& ostr,
unsigned char ch);
returns ostr << (char)ch.
ostream
typedef basic_ostream<char, char_traits<char> > ostream;
The type is a synonym for template class basic_ostream, specialized for elements of type
char with default character traits.
wostream
typedef basic_ostream<wchar_t, char_traits<wchar_t> >
wostream;
The type is a synonym for template class basic_ostream, specialized for elements of type
wchar_t with default character traits.
See also the Table of Contents and the Index.
Copyright © 1992-2001 by P.J. Plauger. All rights reserved.