C Programming - List of all Keywords
Keywords in C Programming
C Language has 32 reserved words with fixed meaning that are used by the compiler. We can not use any of these keywords as a variable name or constant or function name in C programming. For using these keywords, we do not need to include any header file in C programs. Following are the list of keywords. All keywords in C are lowercase.
| auto | do | int | struct | |
| break | else | long | switch | |
| case | extern | return | union | |
| char | enum | register | unsigned | |
| const | float | short | typedef | |
| continue | for | signed | void | |
| double | goto | sizeof | volatile | |
| default | if | static | while |