1.18 Identifiers in c
Identifiers: - Identifiers are names used for program elements like variables, functions, arrays, structures, unions, constants, and labels. Every identifier must have a unique name to help to recognize and use values or functions during program execution. The value of an identifier can change during the program as per the programmer's need. Identifiers can have uppercase letters, lowercase letters, digits, and underscores. It uses 63 characters (26 uppercase, 26 lowercase + 10 digits) can be used to form identifiers. Here underscore character is treated as letter, commonly used in the middle of identifiers. Rules for Writing Identifiers: - An identifier must start with a letter (A–Z or a–z) or an underscore _. It can contain letters, digits (0–9), or underscores after the first character. An identifier cannot begin with a digit. Uppercase and lowercase lette...