From 2b30e88bce5ff12ed1048ab86e71d91198b47925 Mon Sep 17 00:00:00 2001 From: Aleksey Lobanov Date: Sun, 25 Oct 2020 23:49:20 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=20=D0=94=D0=976?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 06_Debugging/main.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 06_Debugging/main.c diff --git a/06_Debugging/main.c b/06_Debugging/main.c new file mode 100644 index 0000000..c927383 --- /dev/null +++ b/06_Debugging/main.c @@ -0,0 +1,9 @@ +#include +#include + +int main() { + char* s = malloc(40); + free(s); + free(s); + return 0; +} \ No newline at end of file