Message-ID: <3B229753.8073C6E2@earthlink.net> From: Martin Ambuhl X-Mailer: Mozilla 4.76 [en] (Win95; U) X-Accept-Language: en,zh-CN,fr,de-CH,ru MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: Re: can't use cout? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 21 Date: Sat, 09 Jun 2001 21:35:17 GMT NNTP-Posting-Host: 63.210.213.118 X-Complaints-To: abuse AT earthlink DOT net X-Trace: newsread2.prod.itd.earthlink.net 992122517 63.210.213.118 (Sat, 09 Jun 2001 14:35:17 PDT) NNTP-Posting-Date: Sat, 09 Jun 2001 14:35:17 PDT Organization: EarthLink Inc. -- http://www.EarthLink.net X-Received-Date: Sat, 09 Jun 2001 14:33:17 PDT (newsmaster1.prod.itd.earthlink.net) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Dave Lemmens wrote: > > I used DJGPP + RHIDE before, it worked great! > But now I want to compile a program (very easy one) > it doesn't work. > > Example: > __________________________ > #include The header for iostreams is . is not a standard header for either C++ or C. > > int main() > { > cout << "test"; > return 0; > } > ___________________________ > This doesn't work ;-(((