MIPI_AdvancedC_FRTK/Lect2/32.c

26 lines
417 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* p = malloc(sizeof(int));
*p = 5;
p = malloc(sizeof(int)); //ОШИБКА!
// Предыдущий блок все еще
// занимает память
}
{
int* p = malloc(sizeof(int));
*p = 5;
free(p);
p = malloc(sizeof(int));
}
return 0;
}