C++ Keywords
In C++, keywords are reserved identifiers which cannot be used as names for the variables in a program.
C++ Keyword List :
asm | else | operator | template |
auto | enum | private | this |
break | extern | protected | throw |
case | float | public | try |
catch | for | register | typedef |
char | friend | return | union |
class | goto | short | unsigned |
const | if | signed | virtual |
continue | inline | sizeof | void |
default | int | static | volatile |
delete | long | struct | while |
double | new | switch | - |
Keywords cannot be used for the -
- Declaring Variable Name
- Declaring Class Name
- Declaring Function Name
- Declaring Object Name