3

What is a good C compiler for Windows Vista?

1

7 Answers 7

6

Mingw works. ( http://www.mingw.org/ ) Mingw is a port of GNUCC to Windows.

You can also use Code::Blocks IDE which comes with MinGW.

TinyC Compiler is another compiler, but i prefer MinGW myself. :)

17

Visual C++ 2008. The Express Edition is even free.

Preemptive answers: yes, it can compile C code as well as C++ code, and it can compile native code as well as managed .NET code.


Update: see matthew's answer for instructions on how to configure VC++ to compile pure C code.

2
  • I have tried it before and it was a painto figure out how it worked Commented Aug 18, 2009 at 13:33
  • If you add a link to how to get VC++ to compile specifically to pure C code, I'll delete my answer (wish I had more karma to do it myself). Commented Aug 18, 2009 at 23:18
6

Visual C++ with it set to compile to pure, unadulterated C.

0
1

code blocks

or

Visual Studio

or

netbeans + add-on for C/C++ Complier

2
  • Your two first links is the same url. Commented Aug 18, 2009 at 14:45
  • any reason for down vote?
    – joe
    Commented Aug 20, 2009 at 0:48
0

dev C++ is a good and lightweight compiler for any version of windows. http://www.bloodshed.net/devcpp.html

2
  • Definitely +1 for Dev-C++. Its a bit outdated (no native 64bit version yet). I cut my teeth on bloodshed's software (and remember my mom freaking when she found "bloodshed.net" in the history when I was in high school) and later moved on to Visual Studio before settling on the Linux CLI (vim/emacs + gcc). Commented Aug 18, 2009 at 14:41
  • -1 for Dev-C++. It's adondandware. Go with something that's actually maintained / updated.
    – KTC
    Commented Aug 20, 2009 at 1:36
0

If you're willing to dive into the command line (and as a programmer, you should expect to eventually), the Gnu Compiler Collection is a great choice. Its been around since pretty much forever (1980s in real-life terms) and it or its offshoots can compile most anything (Ada, anyone?) and target most anything (TIGCC if you want to write for your TI graphing calculator).

If the command line is still too scary, there are a few front ends to make things easier.

GCC, however, isn't a full on development environment. You'll have to use a separate text editor, of which there are many good ones on Vista (I'm partial to Vim for Windows, Emacs, and Notepad++, all of which support syntax highlighting and auto-indentation).

0

The free command line Borland C++ 5.5 is good.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .