What is keyword in C? List of Keywords

What is Keywords?

Keywords are nothing but predefined words who have special meaning to the compiler. Keywords are meant to perform a special function in the c program.


Keywords can not be used as a variable name. And all keywords should be written in lowercase letter 


There are a fixed number of keywords i.e There are 32 keywords in C.


List of keywords in C:
auto double int struct
break else long switch
case enum register typedef
char extern return union
continue for signed void
do if static while
default goto sizeof volatile
const float short unsigned

Previous Post Next Post