Question: int globalVariable Example = 0; void loop 0 { int localVariable Example = 0; globalVariableExample = globalVariableExample+1; localVariableExample = localVariableExample+1; Serial.print(global: ); Serial.println(globalVariableExample); Serial.print(local: );


int globalVariable Example = 0; void loop 0 { int localVariable Example = 0; globalVariableExample = globalVariableExample+1; localVariableExample = localVariableExample+1; Serial.print("global: "); Serial.println(globalVariableExample); Serial.print("local: "); Serial.println(localVariableExample); delay(500); } Task 2.1: Create a new Arduino program that is nearly identical to the global vs local variable example above. However, make the global variable and the local variable both have the same name of "confusing local_global_variable". Which variable takes precedence inside the function, the global or local variable? Turn in an answer to the questions with code and output demonstrating how you know
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
