From: mattrud AT aol DOT com (MATTRUD) Newsgroups: comp.os.msdos.djgpp Subject: Re: cout problem Date: 28 Jan 1998 22:37:27 GMT Lines: 15 Message-ID: <19980128223700.RAA09679@ladder03.news.aol.com> NNTP-Posting-Host: ladder03.news.aol.com Organization: AOL http://www.aol.com References: To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk >maybe if you say also *which* error you got Sorry, I thought that I mentioned this in my original posting. The error I got was that cout was used without being initialized first. But, according to the documentation, libio.h does initialize cout, as well as cin and cerr. The listing again: #include void main() { cout << "Hello World!/n"; } Ruds