int mang1[5] = {0,2,4,6,8};
void setup() {
Serial.begin(115200);
// put your setup code here, to run once:
}
void loop() {
Serial.println(mang1[1]);
delay(1000);
// put your main code here, to run repeatedly:
}
int mang1[5] = {0,2,4,6,8};
void setup() {
Serial.begin(115200);
// put your setup code here, to run once:
}
void loop() {
Serial.println(mang1[1]);
delay(1000);
// put your main code here, to run repeatedly:
}