C Variables
Variables in C
Variables are containers for storing data values.
In C, there are different types of variables. For example:
- An integer variable defined with the keyword
int
stores integers (whole numbers), without decimals, such as 91 or -13. - A floating-point variable defined with the keyword
float
stores floating-point numbers, with decimals, such as 99.98 or -1.23. - A character variable defined with the keyword
char
stores single characters, such as 'A' or 'z'. Char values are bound to be surrounded by single quotes.
Declaration
We cannot declare a variable without specifying its data type. The data type of a variable depends on what we want to store in the variable and how much space we want it to hold. The syntax for declaring a variable is simple:
data_type variable_name;
OR
data_type variable_name = value;
Naming a Variable
There is no limit to what we can call a variable. Yet there are specific rules we must follow while naming a variable:
- A variable name can only contain alphabets, digits, and underscores(_).
- A variable cannot start with a digit.
- A variable cannot include any white space in its name.
- The name should not be a reserved keyword or any special character.
A variable, as its name is defined, can be altered, or its value can be changed, but the same is not true for its type. If a variable is of the integer type, then it will only store an integer value through a program. We cannot assign a character type value to an integer variable. We cannot even store a decimal value into an integer variable.