X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f From: Dong Soo Kim Newsgroups: comp.os.msdos.djgpp Subject: Re: sorry to bother you Date: Tue, 12 Mar 2002 09:40:05 +1100 Organization: The University of New South Wales Lines: 25 Message-ID: References: <197 DOT 3820be5 DOT 29be4925 AT aol DOT com> NNTP-Posting-Host: hummel.orchestra.cse.unsw.edu.au Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: tomahawk.unsw.edu.au 1015886307 2731 129.94.242.21 (11 Mar 2002 22:38:27 GMT) X-Complaints-To: abuse AT unsw DOT edu DOT au NNTP-Posting-Date: Mon, 11 Mar 2002 22:38:27 +0000 (UTC) X-X-Sender: dsk666 AT hummel DOT orchestra DOT cse DOT unsw DOT EDU DOT AU In-Reply-To: <197.3820be5.29be4925@aol.com> To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, 11 Mar 2002 Candy2002ydnaC AT aol DOT com wrote: > Firstly, I have begun to learn C++ at Cprogramming.com and I am now on > the 3rd lesson. It is rather easy and I understand every bit of it as it Is > nicely simplified. What I am stuck on is how to enter test programs into > DJGPP.I would like to start ASAP. > I am beggining to learn C++, I have DJGPP, what do i do to type programs in > and where. 1. Start an editor of your preference 2. Type in the code for the program (I'm assuming that there's no trouble with this part) 3. Compile .. usually with gpp -Wall -o .exe .cpp where == the name of the test program. Don't forget the ".exe". 4. if there are no errors/warnings then you need to test the logic (by running the program). Of course you should already have tested the logic of individual classes and their methods while you were coding them. 5. If there are no logic errors, then you're done. Otherwise go back to Good luck