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:-

autobreakcasecharconstcontinuedefaultdo
double else enum extern floatforgotoif
int longregisterreturnshortsignedsizeofstatic
structswitchtypedefunionunsignedvoidvolatilewhile

Related Posts:

  • Simple if Statement : C Programming                  C Programming Simple if Statement The statement which executes on the basis of certain condition is called simple if statement… Read More
  • Switch Statement in C : C Programming                   C Programming              Switch Statement in C In switch statement we test the sin… Read More
  • Nested if : C Programming            C Programming Nested if If any statement is executed on the basis of multiple if condition is called nested if. if((condition)&&(condition)&&(co… Read More
  • If-else-If ladder : C Programming                C Programming If else-if ladder The if else ladder statement in C programming language is used to test set of conditions in sequence. A… Read More
  • If else : C Programming C Programming if else If we want to execute the particular statement on the basis of certain condition, called if else statement. Syntax     if(condition) { //body to execute } else { //body to execu… Read More