Is it possible to start an array at an index not zero...I.E. you have an array a[35], of 35 elements, now I want to index at say starting 100, so the numbers would be a[100], a[
You could cheat with macro:
int myarray[35]; #define a (myarray - 100) a[100] = 0;
A pointer could also be used.