Keywords in C++

Notes:

Keywords in C++ Programming Language:

Keywords: Keywords are reserved words.
Their meaning and purpose is already defined within the C++ compiler
Keywords must be written in lower case letters.
Keywords should not be used for naming identifiers or programmer defined names.
For naming variables, constants, arrays, functions, structures, unions, classes etc. should not use keywords

Ex (60+):
const volatile mutable
static auto extern register

char short int long
float double signed unsigned
bool true false
wchar_t

if else switch case
for while do
break continue goto return

struct union enum typedef
class template new delete
using namespace

private protected public

void default operator inline

try catch throw

typeid typename sizeof asm

this virtual friend explicit

dynamic_cast reinterpret_cast
const_cast static_cast