Keywords
The keywords are special words used in C programming having specific meaning. The meaning of these words can not be changed. They are also knows as reserve words. Reserve words can not be used as identifiers. Keywords in C Programming 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 Description of all Keywords in C auto The auto keyword declares automatic variables. For example: auto int var1; This statement suggests that var1 is a variable of storage class auto and type int. Variables declared within function bodies are automatic by default. They are recreated each time a function is executed. Since, automatic variables are local to a function, they are also called local variables. To learn more visit C storage class . break and continue The break statement makes program jump out of the...
Comments
Post a Comment