
In C Language, keywords are the reserved words whose meaning and purpose has already been explained to the C compiler. There are only 32 predefined keywords available in C language.
List of C Keywords is listed 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 |
Data Types: char, double, float, int, long, short, signed, unsigned
Storage classes: auto, extern, register, static, const
Conditional Statement: if, else, switch, default, case,
Jumping Statement: break, continue, goto, return
Loops: do, for, while
User-Defined Data type: struct, enum, typedef, union
Other: void, sizeof, volatile
Ad: