Hi,
I have initialized an array like this:
int[][] my_array= new int[28][28];
my_array[-6][12]=2;
But when i assign my_array with my_array[-6][12] it is giving me error.I know the doubt is very stupid but I am very confused.
I want to store values in an array which has negative as well as positive indexes.Is there any other way i can do it?