how to declare arrays code example
Example 1: create n number of arrray in c
int n,i;
//enter n
int **array = malloc(sizeof(int*)*n);
for(i=0;i<n;i++)
array[i] = malloc(sizeof(int)*64);
/* Do Stuffs*/
/* Free Memory */
for(i=0;i<n;i++)
free(array[i]);
free(array);
Example 2: how to crate an array of integers in java
int[] intArray = new int[]{ 1,2,3,4,5,6,7,8,9,10 };