Массивы и коллекции / Массивы

int count = 15;
int *arInt = malloc(sizeof(int) * count);
arInt[0] = 1;

//Memory release
free(arInt);