C Debugging — a practical guide to C debugging with clear examples you can reuse in real projects.
C Programming Tutorial Series (97/102). Prefer one article? Read the complete C programming tutorial.
Short description
Compile with `-Wall -Wextra -g` and fix warnings early.
Debug toolkit
gcc -Wall -Wextra -g
gdb / lldb
AddressSanitizer
Valgrind (where available)
printf bisect carefully