Keywords, Directives

The C and C++ languages ​​specify a few names that act as so-called keywords. They have a meaning that is firmly anchored in the language and may not be used, for example, as a name for a variable. Keywords help the programmer to write source code with more or less meaningful english expressions instead of cryptic characters.

Directive names are also listed on this page. Directives are names of preprocessor commands, which usually appear with a leading hash # character. More detailed information can be looked up in the preprocessor section.

Next Chapter: Characters