Synopsis: | Use clear constant values. Small letters shall not be used, expecially to avoid confusion between l (letter l) and 1 (digit one). The letter U shall be written in uppercase to be consistent with the case of the letter L. |
Language: | C |
Severity Level: | 8 |
Category: | Lexical Elements |
Description: |
Justification Readability. Example #define CCBB_FIRST_DATE 19960101UL /* RIGHT */ #define CCBB_LAST_DATE 20960101ul /* WRONG */ |