switch statements c code example
Example 1: switch statement in c
#include <stdio.h>
int main(void)
{
int a = 0;
switch(a)
{
case 1 :
statement("a = 1");
break;
case 2 :
printf("a = 2");
break;
default :
printf("a is neither 1 or 2");
break;
}
}
Example 2: c switch
int i;
switch (i){
case 1:
break;
case 2:
break;
default:
break;
}
Example 3: switch c
int main(){
int n;
printf("choose one of those numbers (1, 2, 3)";
fflush("stdin");
switch(n){
case 1:
break;
case 2:
break;
case 3:
break;
default:
printf("holy moly you suck");
}
return 0;
Example 4: switch case c
switch (expression) {
case constant1:
break;
case constant2:
break;
default:
}
Example 5: switch c
switch (n)
{
case 1:
break;
case 2:
break;
default:
}
Example 6: switch case in c syntax
switch( expression )
{
case value-1:
Block-1;
Break;
case value-2:
Block-2;
Break;
case value-n:
Block-n;
Break;
default:
Block-1;
Break;
}
Statement-x;