Variables
Variable DEFINITION: Variable is a value or quantity which may vary during program execution is called a Variable. Each variable has specific memory location in Memory Unit, where Numerical values or characters can be stored. We can also call a variable as an Identifier i.e., they identify the varying quantities and stores them in particular memory location. Example: Sum=a+b; In the above example there are “a” and “b” two Identifiers/variables representing two separate quantities in two distinct(different) memory locations. Similarly Sum is also an variable name which used to store the sum of two numbers i.e.,(addition of a and b). MEMORY ...