Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Free C Language IDEs? [closed]

Tags:

c

ide

Googling for "c ide -C++" produces too many results for C++, as well as unrelated results. These search terms seem too short to produce relevant results. Does anyone have a link to a free, Win32 C IDE that does step-through debugging like Visual Studio?

like image 744
HardCode Avatar asked May 09 '09 02:05

HardCode


People also ask

Is there any IDE for C?

There are numerous C and C++ IDEs available for experienced developers as well as for newbie programmers to do programming without any hassle, and you can opt for any one of them as per your requirements.


2 Answers

Visual studio has an express edition that´s free.

http://www.microsoft.com/express/default.aspx

EDIT: VS does compile C and C++

Microsoft Visual C++ is Microsoft's implementation of the C and C++ compiler and associated languages services and specific tools for integration with the Visual Studio IDE. It can compile either in C mode or C++ mode. For C, it follows the ISO C standard with parts of C99 spec along with MS-specific additions in the form of libraries.

Source: http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Included_products

like image 121
Tom Avatar answered Sep 28 '22 05:09

Tom


Eclipse has a C Development Tool.

like image 33
Aaron Avatar answered Sep 28 '22 07:09

Aaron