Keywords in C
A keyword is a reserved word. you cannot use it as an identifier (variable name, constant name, function name, etc.). There are only 32 keywords that are reserved in the programming language C.
Here is the list of 32 keywords of the C language:
- auto
- break
- case
- char
- const
- continue
- default
- do
- double
- else
- enum
- extern
- float
- for
- goto
- if
- int
- long
- register
- return
- short
- signed
- sizeof
- static
- struct
- switch
- typedef
- union
- unsigned
- void
- volatile
- while