malloc and free code example
Example 1: c malloc array
#define ARR_LENGTH 2097152
int *arr = malloc (ARR_LENGTH * sizeof *arr);
Example 2: how to use malloc in c
int* a =(int*)malloc(sizeof(int))
Example 3: how to use malloc in c
ptr = (cast-type*) malloc(byte-size)