Schlüsselwörter der Programmiersprache C++:
 
false  true (einfach nur 0 und 1)
 
bool    (Basisdatentypen)
char    wchar_t
short   int   long  
signed  unsigned
float   double
void
 
enum  (Aufzählungsdatentyp)

 

const  volatile  (Qualifizierer)
 
if  else    switch  case  default  (Selektion)
 
do  while  for  (Iteration)
 
break  continue  return  goto  (Sprunganweisungen)

 

typeid  typename  (Typsystem)
 
inline  virtual  explicit (Funktionsattribute)
 
using  namespace  (Namensräume)
 
union  struct  class  typedef  (Datentypen)  
 
private protected public   friend  (Zugriffsschutz)  
 
this  operator  sizeof   new  delete  (Operatoren)
 
static_cast  dynamic_cast  (explizite Typumwandlungen)
const_cast   reinterpret_cast 
 
auto  register     static  extern      mutable  (Speicherklassen)
 
template  (Generizität)
 
try   catch   throw  (Ausnahmebehandlung)

 

asm  (Assemblercode)