Synopsis: | Do not use C++ alternative representations that are not part of the C keywords (see also 6.4.1.a). |
Language: | C |
Severity Level: | 4 |
Category: | Lexical Elements |
Description: | |||||||||||
Justification Alternative representations from C++ shall not be used as identifier names because of portability and interoperability. Example int bitand; /* WRONG */ Note C++ alternative representations are:
| |||||||||||