Keywords in C Language
Keywords are pre-defined reserved words in a C compiler. Each keyword is associated with a specific functionality in a C program. Since keywords are pre-defined words for compiler, they can't be used as variable name.
A list of 32 keywords available in C language are given below:
| auto | double | int | struct |
| break | else | long | switch |
| case | enum | register | typedef |
| char | extern | return | union |
| const | float | short | unsigned |
| continue | for | signed | void |
| default | goto | sizeof | volatile |
| do | if | static | while |
ADVERTISEMENT
