MIPI_AdvancedC_FRTK/Lect2/30.c

15 lines
305 B
C
Raw Permalink Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
char *str1 = malloc(strlen("Hello world") + 1);
strcpy(str1, "Hello world");
//...
free(str1); // Первый раз free
//...
free(str1); // ОШИБКА! второй раз free
return 0;
}