I'm looking for a good, free C compiler for Windows so I can make some progress on K&R on my 13 hour flight tomorrow. Any suggestions?
|
|
There are plenty. Borland C++ Builder, GCC (on Windows, often used in Cygwin), DJGPP, Visual C++ Express, and LCC-Win32. I've used GCC (through Linux and Cygwin). I used DJGPP years ago (it was/is a fork of GCC, don't know how close it has stayed) which worked very well. No experience with the rest, really. Edit: and MingGW, which was already mentioned and may be your best bet if you don't want Cygwin. |
|||
|
|
|
Tiny C Compiler Its about 200kb. Compiles 9x faster than GCC. No install, just unzip and go. It doesn't optimize, but it should be fine for learning K&R |
|||
|
|
|
Visual Studio 2008 express edition, if you don't mind Microsoft products, is free, and has C++ support (so, therefore, C support). |
|||
|
|
Pelles C is a nice, lightweight IDE for Windows, which bundles an LCC-based compiler. |
|||
|
|
|
This mingw link is better and latest. |
|||
|
|
|
Open Watcom is an open source C / C++ compiler. |
|||
|
|
|
I use gcc compiler and netbeans IDE. It works fine for me. Note : Old borland c++ compiler no longer supports win 7 and latest versions which do support win 7 are not free to use. Also if you are not familiar with visual studio environment its best not to opt for Visual Studio Express Edition for writing C programs. |
|||
|
|