What is Variable in Arduino
In short What is Variable in ArduinoA variable is a named unit of data that may be assigned a value. variable is a named location in a memory where a program can manipulate the data. This location is used to hold the value of the variable. The value of the C variable may get change in the program. variable might be belonging to any of the data type like int, float, char etc.RULES FOR NAMING VARIABLEVariable name must...
