Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an open source C visual debugger for windows? [closed]

Is there an open source C visual debugger for windows? I have heard about the visual C++ express free edition, but does it have a visual debugger?

Thanks.

like image 277
linkedlist Avatar asked Jan 10 '09 14:01

linkedlist


2 Answers

It's not open source (but then does it really need to be?) Visual C++ 2008 Express Edition is an IDE with an integrated debugger.

You can create a C++ project, delete the .cpp files and create/include your .c files.

like image 190
Mitch Wheat Avatar answered Oct 18 '22 15:10

Mitch Wheat


Eclipse CDT is a good alternative. It also has some nifty features such as refactoring and a preprocessor macro explorer.

like image 29
JesperE Avatar answered Oct 18 '22 17:10

JesperE