The global integer named delayTime is declared. The idea here is we should see a 2 byte integer show up in the program data, specifically, the .data memory section.
int delayTime = 1000;
void setup() {
// put your setup code here, to run once:}
void loop() {
// put your main code here, to run repeatedly:digitalWrite(13, LOW);
delay(delayTime);
digitalWrite(13, HIGH);}
Program data:
data = 0 ? why?