Rules for Constructing Variable Names in C Language


Rules for Constructing Variable Names in C Language 




A variable name should not start with a number.

A variable name should not use any special symbol other than an underscore.

A variable name should not use a blank space.

Few of C language compilers support only 8 character long variable names.

No keywords can be used as a variable name.