Lab: Using the Code::Blocks Debugger

Steven Zeil

May 25, 2013

Course Home   e-mail

In this lab, we will look at the basic use of an automated debugger. Later lessons will cover overall strategies for debugging, but in this lab we will look at the mechanics of using supporting tools.

The program we will work with computes some basic statistics on plain text.


Enter some text , terminated by an empty line :
In this lab , we will look at the basic use of an automated debugger .
The program we will work with computes some basic statistics
on plain text .

There are 27 words in 2 sentences .
The average word length is 4.3 characters .
1 Setup
2 Finding the Location of a Crash
3 Debugger Commands
 3.1 Observing Variables
 3.2 Setting Breakpoints
 3.3 Stepping Through Code

[Previous]