Mail Archives: djgpp/2000/02/21/18:39:13
On Sun, 20 Feb 2000 redh0tchilipeprs AT juno DOT com wrote:
> I downloaded all of the files, edited my autoexec.bat file, and now i'm
> lost. The .env file comes up as a printmaster works envelope file. I cant
> find an execute file.
Try running "gcc" at the command prompt.
C:\>gcc
> I've got 50MB of uselessness.
50MB of great stuff, once you can get it working ;-).
I read the Readme.1st
> file, scanned through the FAQ's and I still don't know where to start.
Try a small program like this:
#include <stdio.h>
int main()
{
printf("Hello world\n");
return 0;
}
Use this command line:
gcc -o myprog.exe myprog.c
This should get you a start!
> I'm a begginer in programing. I've only had a comp since Dec. of 99.
Great! I'm sure you'll like DJGPP.
- Raw text -