From: Brian Osman Newsgroups: comp.os.msdos.djgpp Subject: Re: djgpp vs. visual C/C++ Date: Wed, 19 Feb 1997 13:34:57 -0500 Organization: Rensselaer Polytechnic Institute, Troy NY, USA Lines: 36 Message-ID: <330B47D1.463F@rpi.edu> References: <330B38A8 DOT 6201 AT access DOT mountain DOT net> Reply-To: osmanb AT rpi DOT edu NNTP-Posting-Host: darkwing.stu.rpi.edu 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 Cliff wrote: > > What are the differences between the two? Other than the $. I am a > more windows integrated person than dos. I am still a newbie, I have > only had a cpu for about 5 months. Programming has somehow amazed me > and I love to do it. I have learned mostly TURBO PASCAL and a little C. > I tried to use the djgpp compiler but it was difficult and confusing > (although it is probably me that was confused and not the compiler) but > Visual C/C++ seems like it would be worth the money to me. I think it > is great that djgpp is freeware but to me it seems like it would take a > genius to use it. > > Thank You This is definitely the way things seem at first. However, I will warn you that any of the Windows Based Compilers are not NEARLY as simple as they claim. Developing Windows applications is a complicated process, and should probably not be attempted by someone that doesn't have a strong grounding in the language itself. As for djgpp, it is not as hard as it seems. It uses all standard c/c++ syntax, so any book on those langauges will apply. Once you have it configured correctly, for any small program it's just a matter of writing the source, and typing: gcc -o myfile myfile.c You may need more options later, or need to use gxx for c++, but I don't think you will find Vis C any easier. If you need any help with anything, just post questions to this group. You're sure to get answers... (at least from me, for what that's worth. =) Brian