Linux program 의 profiling 을 위한 application.
sudo apt-get install valgrind
sudo apt-get install build-essential
gcc -g -o test test.c
다음과 같이 디버깅이 되도록 option 을 적용한다.
valgrind --leak-check=yes ./test
valgrind --leak-check=full --show-leak-kinds=all ./a.out