3
votes
3answers
1k views

Open Source Static Analysis tool for C?

I see there are many proprietary lint lookalikes with typical "enterprise" price ranges. But is there any point in paying the money they ask for a static C source analyzer instead of using an open ...
-1
votes
1answer
116 views

What features do you want in modern debuggers? [closed]

I am trying to build a better debugger for C/C++ and hopefully for Python and Javascript. I am not too happy single stepping through various lines of code to see what got executed and what did not. ...
-3
votes
4answers
264 views

What are good strategies in C for dealing with pointer errors of this type?

In C, I often come across errors with code like this prio_queue->head[index] = newEntry; Yields a " "Cannot assign Entry** to Entry* " How do you prevent/debug errors of this type, in general? ...