IDENTIFIERS IN C++ LANGUAGE A C++ identifier is a name used to identify a variable, function, class, module, or any other user-defined item. An identifier starts with a letter A to Z or a to z or an underscore (_) followed by zero or more letters, underscores, and digits (0 to 9). CONSTANTS Constants refer to fixed values that the program may not alter and they are called literals .Or in simple words you can say constant is:- Any information is constant Data=information=constant Types of constant TYPE OF CONSTANT INTEGER CONSTANT An integer literal can be a decimal, octal, or hexadecimal constant. A prefix specifies the base or radix: 0x or 0X for hexadecimal, 0 for octal, and nothing for decimal. REAL CONSTANT(float) A real constant(float) has an integer part, a decimal point, a fractional part, and an exponent part. You can represent real constant(float) ...