Valgrind
Last updated
Last updated
Valgrind is super useful for debugging native programs. Valgrind can be used to uncover memory leaks, concurrency issues and a lot more.
Checking for memory leaks of a program (hello
),
If you see a message like, All heap blocks were freed -- no leaks are possible, then your program is probably leak free!