------------- Listing 1: The file iostream ------------------


// iostream standard header
#ifndef _IOSTREAM_
#define _IOSTREAM_
#include <fstream>
                // standard stream declarations
extern istream cin;
extern ostream cout;
extern ostream cerr;
extern ostream clog;
static ios::Init _Ios_init;
#endif
