Computer science question valgrind Running valgrind on your
Computer science question! valgrind
Running valgrind on your program produces the following output: 24 bytes in 1 blocks are definitely lost. State a reason for this error (don\'t worry about getting specific with the bytes-just give reasons).Solution
Valgrind is a programming tool for memory debugging,memory leak detection and profiling.
 Valgrind is in essence a virtual machine using just-in-time compilation techniques, incluing dynamic recompilation. so for that reason : 24 bytes in 1 block are definitely lost 24 (8 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record 3 of 3

