arrays
and functions. They may consist of an alphabet
digit
or an underscore â _ â Rules for forming indentifier names ï· First letter must be an alaphabetï ï· White spaces are not allowedï ï· Uppercase letters are not allowedï ï· Key words not allowedï Variables: variables is nothing but identifiers. A variable is defined as a meaningful name given to the data storage location in computer memory. When using a variable we actually refer to an address of the memory where the data is stored. C language supports two kinds of variables. ï· Local variables ï· Global variables Local variable: local variables are variables which are declared in its body. These life time and scope is valid in itâs block only. Global variable: global variables are variables which are declared in out side body. These life time and scope is valid in through out programm. Example of Local Variable