VARIABLES :-
A variables is a data name that may be used to store a data value. A variables may take different values at different times during the execution of a program. Variables must be defined before they are in a program.
The Rules for variable name are:
- A variables may consists of latter, digits and underscore(......).
- The first character must be a latter.
- Special symbols and blanks are not allowed.
- Keywords or Reserved words are not allowed.
- Both uppercase and lowercase letters are allowed and are considered to be distinguishable. e.g. the variables SUM is not same as sum or sum.
would be regarded as identical variable in C.
0 Comments
How did you like it, please comment by posting my post