Hi!
I want to define a special array. Right now it looks like this:
But I would like to have it like this, so that the indexes are fixed:
How to do that?
Greetings
I want to define a special array. Right now it looks like this:
Code:
int translation[] = {
1,
2
};
But I would like to have it like this, so that the indexes are fixed:
Code:
int translation[] = {
12 = 1,
14 = 2
};
How to do that?
Greetings