Keywords or reserved words in C programming are language-specific words that have special meanings. You cannot use them for names of variables or functions.
| auto | double | int | struct | break |
| long | switch | case | enum | typedef |
| char | return | union | const | float |
| short | unsigned | continue | for | signed |
| default | goto | sizeof | do | if |
| static | while | else | register | extern |
| void | volatile |