Appendix B. C++ Reserved Words
C++ reserves some words for its own use and for use in C++ libraries. You shouldn’t use a reserved word as an identifier in a declaration. Reserved words come in three categories: keywords, alternative tokens, and C++ library reserved names.
C++ Keywords
Keywords are identifiers that form the vocabulary of a programming language. They may not be used for other purposes, such as serving as variable names. The following list shows C++’s keywords. Keywords shown in boldface are also keywords in ANSI C99. Table B.1 lists the keywords.
Table B.1. C++ Keywords
Alternative Tokens
In addition to keywords, C++ has some ...
Get C++ Primer Plus, Fifth Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.