Arduino in Indian Languages
  • Home
  • Download
  • Sign In
    • Sign In
    • Sign Up


switch = चुनो

Like if statements, switch...case controls the flow of programs by allowing programmers to specify different code that should be executed in various conditions. In particular, a switch statement compares the value of a variable to the values specified in case statements.

Example

switch (var) {
    case 1:
      //do something when var equals 1
      break;
    case 2:
      //do something when var equals 2
      break;
    default: 
      // if nothing else matches, do the default
      // default is optional
    break;
  } 
	

Have a suggestion for a better local language word for 'switch'?


Discuss