From: "Andreas Lans" Newsgroups: comp.os.msdos.djgpp Subject: No such file or directory Lines: 13 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: <2YwI8.9433$p56.2742900@newsb.telia.net> Date: Mon, 27 May 2002 20:47:58 GMT NNTP-Posting-Host: 194.237.160.178 X-Complaints-To: abuse AT telia DOT com X-Trace: newsb.telia.net 1022532478 194.237.160.178 (Mon, 27 May 2002 22:47:58 CEST) NNTP-Posting-Date: Mon, 27 May 2002 22:47:58 CEST Organization: Telia Internet To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com So, Im having this really sad problem, which is probably because my complier isnt properly set up, Im using DJGPP under windows XP, and when I for example try to compile a very simple program like the one below, the compiler complains that it cant find iostream. Whats the problem?? #include int main() { std::cout << "Hello, world!\n"; }