C Programming
Keywords in C
A keyword is a reserved word that has special meaning. We cannot redefine the keyword or cannot force to change the naute. Keywords cannot be used as the variable name, constant name etc. There are only 32 reserved words for keywords in C language.
Following are 32 keyword used in C:-
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 C Programming |