Someone may need to correct me on this, but i don't think this is possible. It seems easiest to just do:
Code:
int translation[15];
translation[12] = 1;
translation[14] = 2;
Otherwise, you'd need to fill in the spaces with 0. Probably better to clear the memory anyway.
-Lee