https://github.com/allenjue/debugging-tutorial
A short guide to debugging, a systematic way to detect and squash bugs.
https://github.com/allenjue/debugging-tutorial
Last synced: 2 months ago
JSON representation
A short guide to debugging, a systematic way to detect and squash bugs.
- Host: GitHub
- URL: https://github.com/allenjue/debugging-tutorial
- Owner: AllenJue
- Created: 2023-01-20T23:38:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-20T23:51:55.000Z (over 2 years ago)
- Last Synced: 2025-01-21T11:44:26.518Z (4 months ago)
- Language: C
- Size: 146 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Debugging Tutorial
## Introduction
Bugs are an insidious creatures within programs that stifles productivity for
developers. Debugging is a way to systematically find and solve these bugs, and
this tutorial intends to delve into some debugging tactics. In particular, we'll
give a short tutorial on how to use GDB to find runtime and logical errors in
your code.## Technologies
* GDB
* gcc