Keywords in C Programming Language

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 as identifiers or user defined names.
For naming variables, constants, arrays, functions, structure, unions etc. do not use keywords

Ex(32):
const volatile
static auto extern register
if else switch case default
for while do
break continue goto return
char short int long
signed unsigned
float double
void
struct union enum
sizeof typeof