Standard C++ Library Reference ISO/IEC (VERSION3)
The template function:
template<class Tr>
 basic_istream<char, Tr>&
 operator>>(basic_istream<char, Tr>& istr,
 signed char *str);
returns istr >> (char *)str.
The template function:
template<class Tr>
 basic_istream<char, Tr>&
 operator>>(basic_istream<char, Tr>& istr,
 signed char& ch);
returns istr >> (char&)ch.
The template function:
template<class Tr>
 basic_istream<char, Tr>&
 operator>>(basic_istream<char, Tr>& istr,
 unsigned char *str);
returns istr >> (char *)str.
The template function:
template<class Tr>
 basic_istream<char, Tr>&
 operator>>(basic_istream<char, Tr>& istr,
 unsigned char& ch);
returns istr >> (char&)ch.
wiostream
typedef basic_iostream<wchar_t, char_traits<wchar_t> >
 wiostream;
The type is a synonym for template class basic_iostream, specialized for elements of type
wchar_t with default character traits.
wistream
typedef basic_istream<wchar_t, char_traits<wchar_t> >
 wistream;
The type is a synonym for template class basic_istream, specialized for elements of type










