#include <stdio.h>
#include <stdlib.h>int main(){int *q = (int *)malloc(sizeof(int));*q = 1;// int i = 1;// if(i == 1){// int *p = (int *)malloc(sizeof(int));// *p = 1;// free(p);// }// free(q)return 0;
}
运行查看
valgrind --leak-check=full ./demo/testMemory.out
其他的也可以用上述命令查看测试:
可以看看输出的详细解释: