type c switch code example

Example 1: c switch

int i;

switch (i){
  case 1:
    	//The Proccess you want to be executed
    	break;
  case 2:
    	//The Proccess you want to be executed
   		break;
  default:
    	break;
}

Example 2: c switch case

switch (expression) {
    case constant1:
      // statements
      break;

    case constant2:
      // statements
      break;

    default:
      // default statements
}

Example 3: switch case c

switch(expression) {

   case constant-expression  :
      statement(s);
      break; /* optional */
	
   case constant-expression  :
      statement(s);
      break; /* optional */
  
   /* you can have any number of case statements */
   default : /* Optional */
   statement(s);
}

Tags:

C Example