tags:

views:

311

answers:

4

What windows C IDE can I use that will use gcc to compile and let me insert breakpoints just like Visual Studio would for C#?

I have searched Google and cannot find anything more recent that 2005.

I'm just getting back into C since graduating and would like a non MS IDE that uses GCC, but that's a versatile as Visual Studio.

The thought of having to use GDB command line is not too appealing right now.

+4  A: 

I successfully used Eclipse with C/C++ plugin. Matter of fact I prefer it to VS. You can download it from here it's a real beaut. If you do JNI it's simply indispensable since you can setup your project to do both C/C++ and Java

DroidIn.net
A: 

ddd

you could found it on the "development" menu.

EffoStaff Effo
+2  A: 

Dev-C++ http://www.bloodshed.net/devcpp.html GPL license Uses GCC

hongster
A: 

Netbeans http://www.netbeans.org/features/cpp/index.html

Fred Garvin