From: "Böhme Uwe" Newsgroups: comp.os.msdos.djgpp Subject: Re: Probably Stupid Question Date: Mon, 03 Aug 1998 04:42:46 +0200 Organization: Bingo (Buergernetz Ingolstadt eV) Lines: 18 Message-ID: <35C523A5.3FC43D0@hof.baynet.de> References: <1998080219534800 DOT PAA00698 AT ladder03 DOT news DOT aol DOT com> NNTP-Posting-Host: port57.hof.baynet.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk > Can somone please tell me where to find the 'cout' function. I thought it would > be in iostream.h, but I am unable to find that file. Is there another file for > it? Can I get iostream.h somewhere? Can anyone help? Am I asking too many > questions? First iostream is not a function bat a global Object. As soon as you included it will be declared an ready for use. (Like cout << "Hello world!"; ) Normally it should be declared in djgpp/lang/cxx If you cand find it in gpp281b.zip Pick it from http://www.delorie.com/djgpp/zip-picker.html (c++) Uwe