From cae46a1d0dc2f599afae155f16880bbac5136270 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Sun, 10 Sep 2023 23:04:09 -0400 Subject: [PATCH] links for the source code and data files --- labs/03_debugging/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/labs/03_debugging/README.md b/labs/03_debugging/README.md index a8981a7..5333f5a 100644 --- a/labs/03_debugging/README.md +++ b/labs/03_debugging/README.md @@ -19,7 +19,7 @@ Checkpoints 2 and 3 are an introduction to using a command line debugger: **gdb* Testing and debugging are important steps in programming. Loosely, you can think of testing as verifying that your program works and debugging as finding and fixing errors once you’ve discovered it does not. Writing test code is an important (and sometimes tedious) step. Many software libraries have “regression -tests” that run automatically to verify that code is behaving the way it should. +tests” which run automatically to verify that code is behaving the way it should. Here are four strategies for testing and debugging: @@ -50,8 +50,12 @@ connecting two Points. Please download the following source code files needed for this lab: +[point.h](./point.h) + As well as the following data files: +[input_a.txt](./input_a.txt) + ## Checkpoint 2 *estimate: 20-30 minutes*