1、安装valgrind
sudo apt-get install valgrind
2、编译程序
gcc -g test.c -o test -Wall -Werror
3、使用valgrind的memcheck检测内存泄漏
valgrind --tool=memcheck --leak-check=full ./test
会显示出错误在哪里,并且显示出错误类型
1、安装valgrind
sudo apt-get install valgrind
2、编译程序
gcc -g test.c -o test -Wall -Werror
3、使用valgrind的memcheck检测内存泄漏
valgrind --tool=memcheck --leak-check=full ./test
会显示出错误在哪里,并且显示出错误类型