MIPI_AdvancedC_FRTK/Lect2/28.c

13 lines
221 B
C
Raw Permalink Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int* p1;
int m = 100;
p1 = &m;
free(p1); //ОШИБКА! Попытка освободить стековую память
return 0;
}