From: Jason Green Newsgroups: comp.os.msdos.djgpp Subject: Re: Compiling C++ program... Date: Mon, 31 Jan 2000 01:22:36 +0000 Organization: Customer of Planet Online Lines: 26 Message-ID: References: <3894cfdd AT usenet DOT rollanet DOT org> NNTP-Posting-Host: modem-1.argon.dialup.pol.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: newsg4.svr.pol.co.uk 949282152 24192 62.136.17.1 (31 Jan 2000 01:29:12 GMT) NNTP-Posting-Date: 31 Jan 2000 01:29:12 GMT X-Complaints-To: abuse AT theplanet DOT net X-Newsreader: Forte Agent 1.7/32.534 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com "Me" wrote: > Hi everyone. It's me again. I have been searching the FAQ for about 45 > minutes and I absolutely CANNOT find the solution to my problem. I know I am > looking right at it but I don't know. Anyway, in my program I have added a > line that is: > > #include > > Well, RHIDE says it can't find this file as does the compiler. I set up the > autoexec.bat file just like it said. I installed it all in the c:\djgpp > directory and everything. Can someone help me to fix this so I can include > this file to run my program? Thanks in advance for all of the help! Does section 8.2 of the FAQ help? If not you need to post more info. Try a simple program and post the exact error(s) you get. // hello.cpp // compile with: gpp -Wall hello.cpp -o hello #include int main() { cout << "Hello World!" << endl; }