From: Oon Lin Newsgroups: comp.os.msdos.djgpp Subject: Re: howdy and clueless Date: Wed, 15 Oct 1997 15:05:44 +1000 Organization: University of Queensland Lines: 45 Message-ID: <34444F28.167E@jcu.edu.au> References: <971012174309_1867524687 AT emout17 DOT mail DOT aol DOT com> NNTP-Posting-Host: cuda.jcu.edu.au Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk NGaBear1 AT aol DOT com wrote: > > howdy, just starting to learn how to program and understand most of the lan. > but what is the name of the file i start off with to write my c code? gcc? > have no clue, their is no info you have for beginners. > thanks for your time, > gene To start programming , fire up any text editor and start banging in your codes. Then use gcc.exe to compile it. gcc.exe is a command line C/C++ compiler. A very basic way of building a program (compiling and linkling) would be : gcc -o filename.exe filename.c example : I have a c source file name foo.c To build (create an .exe file) I'll use : gcc -o foo.exe foo.c For more info , there's a great site at http://www.castle.net/~avly/djsetup.html If you're looking for an IDE (I presume you are...) , go get RHIDE 1.4 It's a great and free IDE for DJGPP. Direct your browser to http://www.tu-chemnitz.de/~sho/rho/rhide/ Hope the above information can help you get started. Urs Segementation Faultly , Kean /**********************************************************************/ Lin Oon Kean email : Oon DOT Lin AT jcu DOT du DOT au http://lionfish.jcu.edu.au/~sci-okl "People are killing babies , Crying "Save the whales today !" " - The Kry /**********************************************************************/