<iostream.h>
Include the traditional header <iostream.h>
to effectively include the standard header
<iostream>
and hoist its
names outside the
std
namespace.
In this implementation, all names are hoisted, to provide a more traditional library environment.
#include <iostream> using namespace std;
In this
implementation,
<iostream.h>
does
not declare the
wide oriented
stream objects
wcin
,
wcout
,
wcerr
, and
wclog
.
See also the Table of Contents and the Index.
Copyright © 1992-2002 by P.J. Plauger. All rights reserved.