Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Why use ANSI instead of C99? – Maciej Piechotka Jul 25 '12 at 3:49

10 Answers

up vote 9 down vote accepted

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.

share|improve this answer

Tiny C Compiler

http://bellard.org/tcc/

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

share|improve this answer
Thanks for this one. Cute. – Sinan Ünür May 5 '09 at 0:59

Visual Studio 2008 express edition, if you don't mind Microsoft products, is free, and has C++ support (so, therefore, C support).

share|improve this answer
If you want the only compiler that "just works" out of the box, VS Express edition is you only true choice. – Joce May 5 '09 at 2:00

MingW

share|improve this answer

Pelles C is a nice, lightweight IDE for Windows, which bundles an LCC-based compiler.

share|improve this answer

This mingw link is better and latest.

http://tdragon.net/recentgcc/

share|improve this answer
Agreed. The main mingw seems to have stagnated. I hope it doesn't die. – Unknown May 5 '09 at 1:56

Open Watcom is an open source C / C++ compiler.

share|improve this answer

+1 Visual Studio 2008 Express Edition

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.