From: whatfor AT mindspring DOT com (Jon DeMarks) Newsgroups: comp.os.msdos.djgpp Subject: Re: A really dumb question about DJGPP Date: Thu, 04 Nov 99 22:22:26 GMT Organization: MindSpring Enterprises Lines: 19 Message-ID: <7vt0ps$3vt$2@nntp4.atl.mindspring.net> References: <19991019153126 DOT 09592 DOT 00000041 AT ng-fs1 DOT aol DOT com> NNTP-Posting-Host: d1.8a.9a.f0 X-Server-Date: 4 Nov 1999 22:19:40 GMT X-Newsreader: News Xpress 2.0 Beta #2 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com you could edit a file called hello.c and put this in it: ---------SNIP HERE-------------------- // Hello World Program #include main() { printf("Hello World!\n"); } --------END SNIP----------------------- and compile it by using this command line: gcc -s hello.c -o hello.exe In article <19991019153126 DOT 09592 DOT 00000041 AT ng-fs1 DOT aol DOT com>, turkey6158 AT aol DOT com (Turkey6158) wrote: >I'm using Win95 and I downloaded and installed DJGPP..and, well, I don't know >how to actually get it started.