next
index
prev
5) DDD data display debugger
This is a powerful tool which is a graphical interface for an inferior debugger
(usually gdb)
DDD can do everything your favorite debugger does and much more,
you can watch the code and execute it line by line, and examine data.
The speciality of DDD as name might suggest is its ability to display your
programs data graphically
in a very comfortable manner.
It will allow you to display structures and dereference pointers to create
a visualization of a linked-
list or a tree. DDD can also create graphs out
of arrays.
DDD has a gdb command line, so any one who can use gdb can use DDD and gradually
learn its special features.
a little test program: testddd.c
next
index
prev