MIPI_AdvancedC_FRTK/Lect2/36.c

13 lines
266 B
C
Raw Permalink Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
const size_t SIZE = 10;
int *arr;
arr = malloc(sizeof(int) * SIZE);
arr[SIZE] = 100; // ОШИБКА! выход за
// границу массива
return 0;
}