C compiler for Windows?

CWindowsCompiler Construction

C Problem Overview


I'm fine working on Linux using gcc as my C compiler but would like a Windows solution. Any ideas? I've looked at Dev-C++ from Bloodshed but looking for more options.

C Solutions


Solution 1 - C

You can use GCC on Windows by downloading MingW (discontinued) or its successor Mingw-w64.

Solution 2 - C

You can get Visual C++ Express Edition straight from Microsoft, if you want something targeting Win32. Otherwise MinGW or lcc, as suggested elsewhere.

Solution 3 - C

GCC is ubiquitous. It is trusted and well understood by thousands of folks across dozens of communities.

Visual Studio is perhaps the best IDE ever developed. It has a great compiler underneath it. But it is strictly Windows-only.

If you're just playing, get GCC --it's free. If you're concerned about multiple platfroms, it's GCC. If you're talking serious Windows development, get Visual Studio.

Solution 4 - C

You could always just use gcc via cygwin.

Solution 5 - C

There is another free C compiler for Windows: Pelles C.

Pelles C is a complete development kit for Windows and Windows Mobile. It contains among other things an optimizing C compiler, a macro assembler, a linker, a resource compiler, a message compiler, a make utility and install builders for both Windows and Windows Mobile. It also contains an integrated development environment (IDE) with project management, debugger, source code editor and resource editors for dialogs, menus, string tables, accelerator tables, bitmaps, icons, cursors, animated cursors, animation videos (AVI's without sound), versions and XP manifests.

URL: http://www.smorgasbordet.com/pellesc/

Solution 6 - C

I personally have been looking into using MinGW (what Bloodshed uses) with the http://www.codeblocks.org">Code Blocks IDE.

I am also considering using the http://www.digitalmars.com">Digital Mars C/C++ compiler.

Both seem to be well regarded.

Solution 7 - C

You may try Code::Blocks, which is better IDE and comes with MinGW GCC! I have used it and its just too good a freeware IDE for C/C++.

Solution 8 - C

GCC is not technically a linux specific compiler. Its a standards compliant c/c++ compiler, and I use it for windows programs on a daily basis. Its probably best that you use it until you become more comfortable with something else.

I recommend that you use the MinGW distribution of GCC. That will compile your programs natively for windows, using a standard library, etc.

If you're looking for an IDE, I have two recommendations. Visual Studio is the Microsoft version, and although it has its issues, it is an excellent IDE for working with the code. However, if you're looking for something a bit more lightweight, CodeBlocks is also rather good, and has the added benefit of being able to use basically any compiler you have installed (including several forms of GCC and the Microsoft Compiler that comes with Visual Studio) and being able to open project files fro other IDEs. Plus, it runs on linux too, so you could make that transition even easier on yourself.

I personally prefer GCC, but that's just me. If you really want the Microsoft Solution, VS is the way to go.

Solution 9 - C

MinGW would be a direct translation off gcc for windows, or you might want to check out LCC, vanilla c (more or less) with an IDE. Pelles C seems to be based off lcc and has a somewhat nicer IDE, though I haven't used it personally. Of course there is always the Express Edition of MSVC which is free, but that's your call.

Solution 10 - C

Most universities give you access to Microsoft Dreamspark.

If you're using GCC/Linux in class, just install Ubuntu. Windows is a terrible platform for C development.

Solution 11 - C

Be careful to use a C compiler, not C++ if you're actually doing C. While most programs in C will work using a C++ compiler there are enough differences that there can be problems. I would agree with the people who suggest using gcc via cygwin.

EDIT:
http://en.wikipedia.org/wiki/Compatibility_of_C_and_C%2B%2B">http://en.wikipedia.org/wiki/Compatibility_of_C_and_C%2B%2B</a> shows some of the major differences

Solution 12 - C

Solution 13 - C

GCC works fine. Note that MSVC is not necessarily a valid solution because it does not support C99.

Solution 14 - C

I'm late to this party, but for any future C folks on Windows, Visual Studio targets C90 instead of C99, which is what you'd get on *nix. I am currently targeting C99 on Windows by using Sublime Text 2 in tandem with Cygwin.

Solution 15 - C

Cygwin offers full GCC support on Windows; also, the free Microsoft Visual C++ Express Edition supports 'legacy' C projects just fine.

Solution 16 - C

Visual C++ Express is a fine and free IDE for Windows which comes with a compiler.

If you are more comfortable with commandline solutions in general and gcc in particular, MinGW or Cygwin might be more up you alley. They are also both free.

Solution 17 - C

There have been a few comments pointing out that C is not C++. While that's true, also true that any C++ compiler will also compile C - usually the compiler mode will be automatically selected based on the filename extension, but every compiler also has an option to force C or C++ mode regardless of the filename.

So choose the free C++ compiler that you're most comfortable with gcc, VC++ Express, Digital Mars, whatever. Use the IDE you like best emacs, vim, VC++ Express, Code::Blocks, Bloodshed - again whatever.

Any of these tools will be more than adequate for learning. Personally, since you're asking about Windows, I'd choose VC++ Express - it's a great IDE, it's free, and it'll compile C programs just fine.

Solution 18 - C

It comes down to what you're using in class.

If the labs and the assignments are in linux, then you probably want a MinGW solution. If they're in windows, get Visual Studio Express.

Solution 19 - C

Can't you get a free version of Visual Studio Student Addition from your school? Most Universities have programs to give free software to students.

Solution 20 - C

You mean Bloodshed's Dev-C++? It's a nice visual IDE for C++ which uses MinGW's gcc for Windows as the back-the-scenes compiler. The project's been abandoned for a while (in my opinion, using Delphi to develop a C++ IDE is a very stupid thing to do to draw developers' attention), however there's nothing that stops you from using it and updating the version of MinGW's gcc it uses to the latest one - besides it's GPL-licensed.

Solution 21 - C

I use either BloodShed's DEV C++, CygWin, or Visual C++ Express. All of which are free and work well. I have found that for me, DEV C++ worked the best and was the least quirky. Each compiler has it's own quirks and deifferences, you need to try out a few and find the one with which you are most comfortable. I also liked the fact that DEV C++ allowed me to change the fonts that are used in the editor. I like Proggy Programming fonts!

Solution 22 - C

Must Windows C++ compilers will work.

Also, check out MinGW.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionmario64View Question on Stackoverflow
Solution 1 - CBen HoffsteinView Answer on Stackoverflow
Solution 2 - CAlex MView Answer on Stackoverflow
Solution 3 - CKevin LittleView Answer on Stackoverflow
Solution 4 - CUnkwnTechView Answer on Stackoverflow
Solution 5 - CHideoView Answer on Stackoverflow
Solution 6 - CPhilip TinneyView Answer on Stackoverflow
Solution 7 - CyogeeshView Answer on Stackoverflow
Solution 8 - CBlankView Answer on Stackoverflow
Solution 9 - CmjardView Answer on Stackoverflow
Solution 10 - CMatt JoinerView Answer on Stackoverflow
Solution 11 - CtloachView Answer on Stackoverflow
Solution 12 - CMezView Answer on Stackoverflow
Solution 13 - CDark ShikariView Answer on Stackoverflow
Solution 14 - CJohn RuizView Answer on Stackoverflow
Solution 15 - CmdbView Answer on Stackoverflow
Solution 16 - CHankView Answer on Stackoverflow
Solution 17 - CMichael BurrView Answer on Stackoverflow
Solution 18 - CJoel CoehoornView Answer on Stackoverflow
Solution 19 - CCharles GrahamView Answer on Stackoverflow
Solution 20 - CJoe PinedaView Answer on Stackoverflow
Solution 21 - CMichael BrownView Answer on Stackoverflow
Solution 22 - CnsandersView Answer on Stackoverflow