How do you allocate the memory during run time in c code example
Example: c malloc array
#define ARR_LENGTH 2097152
int *arr = malloc (ARR_LENGTH * sizeof *arr);
#define ARR_LENGTH 2097152
int *arr = malloc (ARR_LENGTH * sizeof *arr);