Plurrrr

Tue 01 Mar 2022

Debugging with GDB

During the last 5 years, I mostly worked with Python, and I really like debugging in Python. You’d just put a breakpoint() function call into your code somewhere and repl into the program. I wanted to see how close I get to that in C. As C is not an interpreted language, my hopes weren’t that high, but it turns out debugging in C is quite comfortable.

Source: Debugging with GDB, an article by Felix G. Knorr.