Message-ID: <20010711030224.12370.qmail@web12204.mail.yahoo.com> Date: Tue, 10 Jul 2001 20:02:24 -0700 (PDT) From: Matt Mooney Subject: compiler help To: djgpp AT delorie DOT com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Reply-To: djgpp AT delorie DOT com I have been trying to figure out my problem for weeks now--reinstalling, reading the DJGPP FAQ, and reading the mailing lists. I have the 2.95.5 version of DJGPP and the 1.4 version of RHIDE. I received the compiler with a book I bought--"Learning to Program in C++"--and I followed the installation instructions exactly. I know that the problem isn't the way I am installing the compiler because I installed it on one of my friends computers--he is running Windows 98--and on my old computer which is running Windows 95. I am currently trying to make the installation on Windows ME. The book I bought came with sample code that had a few programs that were already executables. So I type in the files name in DOS and it ran. So I thought that everything was fine, and tried to compile my first program: #include int main() { short x; short y; cout<<"Please enter two numbers:\n"; cin>> x >> y >>endl; cout<<"The numbers you entered were "<< x <<" and "<< y <