Identifiers
Identifier is the official word for name of a variable in C program.
It must start with a letter (A through Z or a through z).
It must consist of only letters (A to Z, a to z), digits (0 to 9), and the underscore _.
It must not be a keyword, such as int, or while.