I have a pointer to an array. I know how many number of items that array can hold but the length of each item is dynamic. So how to memset() the array in this case.
Int8 *data[4]; //array can hold maximum of 4 elements
Also I want to allocate memory for each item. How to do this?
Int8 (*data)[4];