-1

Is there any software available in UBUNTU 13.10 to check line by line code execution of C programs.

1 Answers1

1

gdb is gnu-debugging tool that comes pre-installed in Ubuntu. It is popularly used to debug C programs.

You can install(just in case you don't have it) using sudo apt-get install gdb.

To use gdb, you can refer to either the manual page of gdb, or the gnu documentation for gdb or there are hundreds of tutorial available explaining gdb. You may find it a bit complex in the beginning, mainly because it is a command-line tool, but you'll find it very useful once you get your hands on it and practice.

jobin
  • 28,567