Variable
1.6 VARIABLE We so many times come across the term “variable” .we assume them in math’s for solving some Equation . so let see what is the meaning of variable in programming . in c programming variable are Simple names used to refer to some location in memory that hold a value with which we are working . Syntax for declaration of variable: data type variablename : #include <stdio.h> int main(){ int firstNumber, secondNumber, sumOfTwoNumbers; printf("Enter two integers: "); // Two integers entered by user is stored using scanf() function scanf("%d %d", &firstNumber, &secondNumber); // sum of two numbers in stored in variable sumOfTwoNumbers sumOfTwoNumbers = firstNumber + secondNumber; ...