Where can I find C compiler?

seems vs 2005, 2008, and 2010 don't have it anymore
Where can I find C compiler?
Thanks
I use VC++ Express 2010 and it has a C compiler, so why wouldn't the paid VS have one?
closed account (z05DSL3A)
Walkthrough: Compiling a C Program
http://msdn.microsoft.com/en-us/library/bb384838.aspx
gcc is much better than MS VC++. Better optimization, in size and speed, also it's crossplatform.
Last edited on
Try dev c++
Try dev c++

Don't, Dev-C++ is a very old IDE. Don't use it.
In visual studio, click tools, visual studio command prompt, in the command prompt type in

cl -EHsc filename.cpp and hit enter. That will create filename.exe which is executable.
Don't, Dev-C++ is a very old IDE. Don't use it.


I use wxDev-C++ which is still Dev-C++ but just an extension of it (personally I don't really like MS VC++)

Last edited on
You can use CodeBlocks with gcc. Its free. If you don't mind the resulting pigsty, you can use QT Designer with gcc. It is also free. It is intended for QT projects only, but you can coerce it for other types of development, especially for personal training. Since you don't come from the *nix side of things, QT Designer would probably be the friendliest freely available IDE out there.

Regards
The gcc port CodeBlocks uses is called MinGW, you can also use it directly or with an IDE other than CodeBlocks (but there's nothing wrong with codeblocks)
seems vs 2005, 2008, and 2010 don't have it anymore
They are C and C++ compilers. Pass in a a file with a .c extension and they'll behave as C compilers.

In addition to the compilers mentioned, there's also Watcom (which is current) and Borland (which is old).
Topic archived. No new replies allowed.