Yuval
Yuval

Reputation: 1771

Is there a debugger for gedit in Ubuntu?

I'm writing my code in gedit (in Ubuntu). Is there a C debugger I can use together with gedit?

Upvotes: 1

Views: 3512

Answers (2)

Shash
Shash

Reputation: 4260

You can use DDD which is a graphical front end for gdb.

Upvotes: 1

user529758
user529758

Reputation:

You can use the GNU debugger (GDB) regardless of which text editor you're using. It's the standard debugging tool on Unix.

Upvotes: 4

Related Questions