I've been exposed to numerous coding guidelines, every one of them giving guidelines for naming 'things'. One specific C89 naming rule triggered this question: It was explicitly forbidden to use the name 'new' for a variable, because in C++ this is a keyword.
This started me thinking about the next standards, C99 is well documented, but C1X is not yet published. And the Standards committee has several extensions in the works.
Therefore I'm wondering if someone has a list, or has seen a list with keywords and their origins, in order to make a set of naming rules with the reasons why several names are to be avoided.
And although strictly spoken complex is not a keyword, similar definitions would best be included. BTW, C++ information is also welcome!
new,complex,decimal, and in the light of the next set of standards, or porting to C++, I would love to have such a list. – Johan Bezem Nov 15 '11 at 16:45entry, TR19769 is defining new character data types,volatilewas introduced (IIRC) in C94, C1X adds loads of stuff. Maybe it doesn't exist, but I'd be interested in having all this available in one location. Or would you know to avoid a variable namedecimal128? – Johan Bezem Nov 15 '11 at 16:53