C keywords

Da cppreference.com.
< c

This is a list of reserved keywords in C. Since they are used by the language, these keywords are not available for re-definition.

auto
break
case
char
const
continue
default
do
double
else
enum
extern

float
for
goto
if
inline(dal C99)
int
long
register
restrict(dal C99)
return
short

signed
sizeof
static
struct
switch
typedef
union
unsigned
void
volatile
while

_Alignas(dal C11)
_Alignof(dal C11)
_Atomic(dal C11)
_Bool(dal C99)
_Complex(dal C99)
_Generic(dal C11)
_Imaginary(dal C99)
_Noreturn(dal C11)
_Static_assert(dal C11)
_Thread_local(dal C11)

Inoltre, ogni nome che contiene un doppio underscore __ o inizia con un carattere di sottolineatura seguito da una lettera maiuscola è sempre riservato per l'attuazione e non deve essere usato come un identificatore. Ogni nome che inizia con un carattere di sottolineatura è riservata alla realizzazione per l'uso come un nome nello spazio dei nomi globale, i nomi possono essere utilizzati come identificatori nel namespace definiti dall'utente, come i nomi dei membri della classe, ecc
Original:
Also, each name that contains a double underscore __ or begins with an underscore followed by an uppercase letter is always reserved to the implementation and should not be used as an identifier. Each name that begins with an underscore is reserved to the implementation for use as a name in the global namespace; such names may be used as identifiers in user-defined namespaces, as names of class members, etc.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Note that digraphs <%, %>, <:, :>, %:, and %:%: provide an modo alternativo per rappresentare gettoni standard.

close