how to use valgrind to find memory leaks code example
Example: valgrind detect memory leak
valgrind --leak-check=full \
--show-leak-kinds=all \
--track-origins=yes \
--verbose \
--log-file=valgrind-out.txt \
./executable exampleParam1