Yes, you can!
I don't think you can do this with arrays, but you can do it with pointers to array elements.
However, I would not do this unless I had a VERY good reason. Negatively indexable pointers aren't going to be what someone reading your code will expect, and so it will be easy to accidentally misuse. For clarity, you may be better off with a function-based solution - unless it needs to be VERY fast.
With that out of the way, let's do it!
From your attempt, it looks like you might be confused about arrays and pointers. Remember, they are not the same thing.
Now, C doesn't prevent you from using negative indexes, which can make sense when you're using a pointer. So, you can do this:
int a[5];
int *b = a + 2; // or &a[2]
b[-2] // is a[0]
b[-1] // is a[1]
b[0] // ia a[2], etc
So, I think the following code will work for you.
#define GRIDSIZE 101
.....
int map_memory[GRIDSIZE][GRIDSIZE];
int *map_rows[GRIDSIZE];
int **map;
int i;
int gridMidPoint = GRIDSIZE / 2;
for(i = 0; i < GRIDSIZE; i++) {
map_rows[i] = &(map_memory[i][0]) + gridMidPoint;
}
map = map_rows + gridMidPoint;
Then you can use it exactly as you'd expect - with the grid size of 101:
for(i = -50; i <= 50; i++) {
for(j = -50; j <= 50; j++) {
map[i][j] = i+j;
}
}
Or, more generally:
for(i = -1 * gridMidPoint; i <= gridMidPoint; i++) {
for(j = -1 * gridMidPoint; j <= gridMidPoint; j++) {
map[i][j] = i+j;
}
}
Since both arrays are created on the stack, there's no need to free anything.
What's happening here? Let me break it down. First, we create the backing array:
int map_memory[GRIDSIZE][GRIDSIZE];
Next, we want an array of pointers that we're going to use to be our rows:
int *map_rows[GRIDSIZE];
We need these to be pointers, because they're going to point into the middle of the arrays in the two dimensional array we just made.
int gridMidPoint = GRIDSIZE / 2;
Here we calculate the midpoint. I'm assuming that you want the same number of array elements on each side of the zero - so you don't need the +1 from your example.
for(i = 0; i < GRIDSIZE; i++) {
map_rows[i] = &(map_memory[i][0]) + gridMidPoint;
}
This code iterates over each element in our rows array, and sets that row to point into the middle of the relevant row in the two dimensional array. You could also write:
map_rows[i] = &map_memory[i][gridMidPoint];
But I personally believe that the version with the superflous brackets and the addition is clearer to read. I think if you're doing unusual things with pointers, you should spell out exactly what's happening for the next guy who reads your code.
Finally, we need our map pointer to point in to the middle of the rows:
map = map_rows + gridMidPoint;
And we're done!
Remember that two dimensional arrays are actually one block of contiguous memory. This means that map[0][gridMidPoint+1] is the same location as map[1][-1*gridMidPoint]. This is actually no different to a normal two dimensional array, but it's something to be aware of when debugging.