📄 leakmem.c
字号:
/** * \file leakmem.c * deliberately leaks memory, to test memory checkers. * \author Matthias Andree * \date 2005 * * GNU General Public License v2 */#include <stdlib.h>#include <stdio.h>int main(void) { char *x; x = malloc(42); printf("got %p\n", x); /* deliberately leak memory here */ x = malloc(42); printf("got %p\n", x); free(x); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -