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