static const uint8_t table[4] = { [0]=10,
[1]=11,
[2]=12,
[3]=13
};
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
for (byte i=0;i<4;i++) {
Serial.print("Element[");Serial.print(i,DEC);;Serial.print("]: ");
Serial.println(table[i], DEC);
}
}
void loop() {
// put your main code here, to run repeatedly:
}