Добавлено ДЗ6

This commit is contained in:
2020-10-25 23:49:20 +03:00
parent bb24d36033
commit 2b30e88bce

9
06_Debugging/main.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
int main() {
char* s = malloc(40);
free(s);
free(s);
return 0;
}